From 52e5b4b0ef5742bb09865af0922898a115129c2c 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 df773d4f..e035718a 100644 --- a/grammar.js +++ b/grammar.js @@ -1292,6 +1292,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 8bb76fe5..a50180ed 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 09d11cb16f4170d7eea7a0e498518aff7c4601d6 Mon Sep 17 00:00:00 2001 From: may Date: Tue, 1 Apr 2025 22:28:42 +0200 Subject: [PATCH 2/2] chore: tree-sitter generate --- src/grammar.json | 12 + src/parser.c | 235619 ++++++++++++++++++++++---------------------- 2 files changed, 118735 insertions(+), 116896 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 08ee3b7e..96ccc045 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -7614,6 +7614,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ diff --git a/src/parser.c b/src/parser.c index 32c6f19e..d106e93e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically generated by tree-sitter v0.25.2 (6e0618704ad758ba2ea5822faa80bcd36fbeba3d) */ +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ #include "tree_sitter/parser.h" @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3787 -#define LARGE_STATE_COUNT 1056 +#define STATE_COUNT 3823 +#define LARGE_STATE_COUNT 1063 #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,142 +4004,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 3, - [10] = 2, - [11] = 11, - [12] = 11, - [13] = 6, - [14] = 8, - [15] = 2, - [16] = 11, - [17] = 6, - [18] = 3, - [19] = 2, - [20] = 11, - [21] = 6, - [22] = 3, - [23] = 2, - [24] = 11, - [25] = 6, - [26] = 3, - [27] = 2, - [28] = 11, - [29] = 6, - [30] = 3, - [31] = 2, - [32] = 11, - [33] = 6, - [34] = 3, + [9] = 9, + [10] = 5, + [11] = 4, + [12] = 7, + [13] = 8, + [14] = 9, + [15] = 5, + [16] = 4, + [17] = 9, + [18] = 9, + [19] = 5, + [20] = 4, + [21] = 8, + [22] = 9, + [23] = 5, + [24] = 4, + [25] = 8, + [26] = 9, + [27] = 5, + [28] = 4, + [29] = 8, + [30] = 9, + [31] = 5, + [32] = 4, + [33] = 8, + [34] = 8, [35] = 35, [36] = 36, [37] = 37, [38] = 38, [39] = 39, - [40] = 39, + [40] = 40, [41] = 38, - [42] = 42, + [42] = 39, [43] = 35, - [44] = 38, + [44] = 36, [45] = 39, - [46] = 35, - [47] = 36, - [48] = 42, - [49] = 37, - [50] = 35, - [51] = 39, - [52] = 38, - [53] = 38, - [54] = 39, - [55] = 36, - [56] = 42, - [57] = 38, + [46] = 40, + [47] = 37, + [48] = 38, + [49] = 38, + [50] = 39, + [51] = 35, + [52] = 35, + [53] = 39, + [54] = 38, + [55] = 38, + [56] = 38, + [57] = 39, [58] = 39, - [59] = 38, - [60] = 39, - [61] = 38, - [62] = 39, - [63] = 37, - [64] = 37, - [65] = 36, - [66] = 42, + [59] = 39, + [60] = 36, + [61] = 40, + [62] = 37, + [63] = 36, + [64] = 38, + [65] = 40, + [66] = 37, [67] = 67, [68] = 68, [69] = 69, [70] = 70, - [71] = 68, - [72] = 69, - [73] = 73, + [71] = 71, + [72] = 72, + [73] = 70, [74] = 74, - [75] = 73, + [75] = 74, [76] = 76, - [77] = 74, + [77] = 77, [78] = 78, - [79] = 79, + [79] = 72, [80] = 76, - [81] = 81, - [82] = 82, - [83] = 70, + [81] = 77, + [82] = 78, + [83] = 83, [84] = 84, [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 84, - [91] = 91, + [90] = 90, + [91] = 84, [92] = 92, - [93] = 91, - [94] = 94, - [95] = 95, - [96] = 95, - [97] = 97, - [98] = 84, - [99] = 97, - [100] = 95, - [101] = 97, - [102] = 92, - [103] = 91, - [104] = 94, - [105] = 105, - [106] = 95, - [107] = 97, - [108] = 105, - [109] = 85, - [110] = 86, - [111] = 84, - [112] = 92, - [113] = 91, - [114] = 94, - [115] = 87, - [116] = 95, - [117] = 97, - [118] = 84, - [119] = 88, - [120] = 89, - [121] = 121, - [122] = 92, - [123] = 91, - [124] = 94, - [125] = 94, - [126] = 95, - [127] = 97, - [128] = 92, - [129] = 129, + [93] = 87, + [94] = 88, + [95] = 89, + [96] = 90, + [97] = 84, + [98] = 92, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 87, + [106] = 88, + [107] = 89, + [108] = 104, + [109] = 84, + [110] = 92, + [111] = 87, + [112] = 88, + [113] = 89, + [114] = 90, + [115] = 84, + [116] = 92, + [117] = 99, + [118] = 100, + [119] = 87, + [120] = 88, + [121] = 89, + [122] = 101, + [123] = 90, + [124] = 84, + [125] = 92, + [126] = 87, + [127] = 88, + [128] = 89, + [129] = 90, [130] = 92, - [131] = 91, - [132] = 94, - [133] = 84, + [131] = 102, + [132] = 103, + [133] = 90, [134] = 134, [135] = 135, - [136] = 136, + [136] = 134, [137] = 137, - [138] = 135, - [139] = 139, - [140] = 139, - [141] = 141, - [142] = 134, - [143] = 143, - [144] = 143, + [138] = 138, + [139] = 138, + [140] = 140, + [141] = 137, + [142] = 142, + [143] = 135, + [144] = 144, [145] = 145, [146] = 146, [147] = 147, @@ -4149,236 +4158,236 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [160] = 160, [161] = 161, [162] = 162, - [163] = 137, - [164] = 164, + [163] = 163, + [164] = 151, [165] = 165, - [166] = 166, - [167] = 150, + [166] = 165, + [167] = 167, [168] = 168, [169] = 169, - [170] = 170, + [170] = 142, [171] = 171, [172] = 172, - [173] = 154, - [174] = 155, + [173] = 167, + [174] = 174, [175] = 175, [176] = 176, - [177] = 177, + [177] = 157, [178] = 178, - [179] = 145, + [179] = 146, [180] = 180, - [181] = 181, - [182] = 182, - [183] = 178, - [184] = 161, + [181] = 168, + [182] = 145, + [183] = 183, + [184] = 153, [185] = 185, - [186] = 156, - [187] = 148, - [188] = 149, - [189] = 189, - [190] = 160, - [191] = 148, - [192] = 149, - [193] = 160, - [194] = 148, - [195] = 149, - [196] = 160, - [197] = 162, - [198] = 198, + [186] = 186, + [187] = 187, + [188] = 178, + [189] = 152, + [190] = 146, + [191] = 178, + [192] = 152, + [193] = 162, + [194] = 146, + [195] = 178, + [196] = 152, + [197] = 197, + [198] = 197, [199] = 199, [200] = 200, [201] = 201, - [202] = 202, - [203] = 170, + [202] = 183, + [203] = 169, [204] = 204, - [205] = 205, - [206] = 206, - [207] = 199, - [208] = 165, - [209] = 204, + [205] = 160, + [206] = 161, + [207] = 180, + [208] = 208, + [209] = 209, [210] = 210, - [211] = 171, - [212] = 172, - [213] = 152, - [214] = 168, + [211] = 211, + [212] = 212, + [213] = 201, + [214] = 199, [215] = 215, [216] = 216, [217] = 217, [218] = 218, - [219] = 215, - [220] = 220, - [221] = 218, - [222] = 220, - [223] = 218, - [224] = 224, - [225] = 215, - [226] = 220, - [227] = 218, - [228] = 228, + [219] = 219, + [220] = 215, + [221] = 221, + [222] = 222, + [223] = 216, + [224] = 215, + [225] = 216, + [226] = 217, + [227] = 216, + [228] = 217, [229] = 229, - [230] = 230, - [231] = 224, - [232] = 232, - [233] = 228, - [234] = 234, - [235] = 235, + [230] = 221, + [231] = 231, + [232] = 219, + [233] = 215, + [234] = 219, + [235] = 229, [236] = 236, - [237] = 230, - [238] = 232, - [239] = 234, - [240] = 224, - [241] = 234, - [242] = 232, - [243] = 216, - [244] = 217, - [245] = 218, - [246] = 220, - [247] = 224, - [248] = 235, + [237] = 231, + [238] = 218, + [239] = 239, + [240] = 222, + [241] = 241, + [242] = 231, + [243] = 236, + [244] = 236, + [245] = 217, + [246] = 241, + [247] = 236, + [248] = 219, [249] = 236, - [250] = 215, - [251] = 215, - [252] = 220, + [250] = 250, + [251] = 229, + [252] = 250, [253] = 253, - [254] = 253, - [255] = 255, - [256] = 255, - [257] = 255, + [254] = 217, + [255] = 215, + [256] = 219, + [257] = 253, [258] = 258, - [259] = 258, - [260] = 253, + [259] = 259, + [260] = 260, [261] = 258, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, + [262] = 259, + [263] = 260, + [264] = 260, + [265] = 259, + [266] = 258, [267] = 267, [268] = 268, [269] = 269, - [270] = 267, + [270] = 270, [271] = 271, - [272] = 262, + [272] = 272, [273] = 273, [274] = 274, [275] = 275, [276] = 276, [277] = 277, - [278] = 269, + [278] = 278, [279] = 279, [280] = 280, [281] = 281, - [282] = 266, - [283] = 268, - [284] = 271, - [285] = 262, - [286] = 279, - [287] = 287, - [288] = 263, - [289] = 264, - [290] = 265, - [291] = 287, - [292] = 267, - [293] = 269, - [294] = 287, - [295] = 263, - [296] = 264, - [297] = 265, - [298] = 263, - [299] = 264, - [300] = 267, - [301] = 267, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 268, + [287] = 269, + [288] = 288, + [289] = 270, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 269, + [297] = 297, + [298] = 269, + [299] = 269, + [300] = 269, + [301] = 301, [302] = 302, - [303] = 273, - [304] = 267, - [305] = 267, + [303] = 301, + [304] = 304, + [305] = 305, [306] = 306, - [307] = 267, + [307] = 307, [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 276, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 269, - [317] = 310, + [309] = 267, + [310] = 276, + [311] = 277, + [312] = 278, + [313] = 279, + [314] = 280, + [315] = 281, + [316] = 282, + [317] = 317, [318] = 318, [319] = 319, [320] = 320, [321] = 321, [322] = 322, - [323] = 279, - [324] = 324, - [325] = 325, - [326] = 265, - [327] = 276, + [323] = 323, + [324] = 318, + [325] = 285, + [326] = 326, + [327] = 327, [328] = 328, - [329] = 308, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 310, - [334] = 334, - [335] = 335, - [336] = 280, - [337] = 308, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 281, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 280, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 281, - [351] = 308, - [352] = 266, - [353] = 268, - [354] = 271, - [355] = 324, - [356] = 262, - [357] = 325, - [358] = 306, - [359] = 276, - [360] = 338, - [361] = 340, - [362] = 279, - [363] = 302, - [364] = 309, - [365] = 274, - [366] = 311, - [367] = 314, - [368] = 318, - [369] = 321, - [370] = 331, - [371] = 334, - [372] = 335, - [373] = 345, - [374] = 348, - [375] = 287, - [376] = 324, - [377] = 280, - [378] = 338, - [379] = 281, - [380] = 309, - [381] = 321, - [382] = 266, - [383] = 324, - [384] = 268, - [385] = 338, - [386] = 271, - [387] = 321, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, + [329] = 283, + [330] = 301, + [331] = 284, + [332] = 285, + [333] = 268, + [334] = 301, + [335] = 274, + [336] = 269, + [337] = 274, + [338] = 318, + [339] = 276, + [340] = 277, + [341] = 278, + [342] = 279, + [343] = 280, + [344] = 281, + [345] = 282, + [346] = 283, + [347] = 284, + [348] = 285, + [349] = 268, + [350] = 350, + [351] = 269, + [352] = 270, + [353] = 353, + [354] = 350, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 270, + [360] = 274, + [361] = 358, + [362] = 355, + [363] = 271, + [364] = 294, + [365] = 276, + [366] = 277, + [367] = 317, + [368] = 323, + [369] = 353, + [370] = 272, + [371] = 275, + [372] = 291, + [373] = 295, + [374] = 305, + [375] = 307, + [376] = 308, + [377] = 322, + [378] = 326, + [379] = 278, + [380] = 358, + [381] = 279, + [382] = 280, + [383] = 271, + [384] = 281, + [385] = 323, + [386] = 295, + [387] = 282, + [388] = 358, + [389] = 283, + [390] = 271, + [391] = 284, + [392] = 295, [393] = 393, [394] = 394, [395] = 395, @@ -4390,7 +4399,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [401] = 401, [402] = 402, [403] = 403, - [404] = 201, + [404] = 404, [405] = 405, [406] = 406, [407] = 407, @@ -4401,94 +4410,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [412] = 412, [413] = 413, [414] = 414, - [415] = 414, + [415] = 415, [416] = 416, - [417] = 417, - [418] = 200, + [417] = 400, + [418] = 418, [419] = 419, [420] = 420, - [421] = 414, + [421] = 204, [422] = 422, - [423] = 422, + [423] = 423, [424] = 424, [425] = 425, - [426] = 426, - [427] = 427, - [428] = 425, - [429] = 426, + [426] = 400, + [427] = 212, + [428] = 399, + [429] = 429, [430] = 430, - [431] = 425, - [432] = 427, - [433] = 430, - [434] = 430, - [435] = 435, - [436] = 435, - [437] = 437, - [438] = 438, - [439] = 439, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 433, + [435] = 431, + [436] = 432, + [437] = 430, + [438] = 432, + [439] = 431, [440] = 440, - [441] = 439, - [442] = 440, + [441] = 440, + [442] = 442, [443] = 443, - [444] = 439, - [445] = 440, - [446] = 440, - [447] = 439, - [448] = 443, - [449] = 443, - [450] = 443, - [451] = 451, - [452] = 452, - [453] = 452, - [454] = 452, - [455] = 452, + [444] = 444, + [445] = 445, + [446] = 444, + [447] = 447, + [448] = 447, + [449] = 444, + [450] = 444, + [451] = 445, + [452] = 447, + [453] = 445, + [454] = 445, + [455] = 447, [456] = 456, - [457] = 339, + [457] = 457, [458] = 456, [459] = 456, [460] = 456, - [461] = 390, - [462] = 462, - [463] = 462, - [464] = 391, - [465] = 393, - [466] = 462, - [467] = 389, - [468] = 392, - [469] = 462, - [470] = 419, - [471] = 408, - [472] = 420, - [473] = 411, - [474] = 416, - [475] = 400, - [476] = 396, - [477] = 477, - [478] = 409, + [461] = 461, + [462] = 461, + [463] = 290, + [464] = 461, + [465] = 461, + [466] = 466, + [467] = 466, + [468] = 398, + [469] = 466, + [470] = 396, + [471] = 394, + [472] = 395, + [473] = 466, + [474] = 397, + [475] = 475, + [476] = 475, + [477] = 403, + [478] = 423, [479] = 479, - [480] = 412, - [481] = 397, - [482] = 401, - [483] = 406, - [484] = 484, - [485] = 399, - [486] = 398, - [487] = 410, - [488] = 407, - [489] = 413, - [490] = 403, - [491] = 417, - [492] = 492, - [493] = 492, - [494] = 494, - [495] = 495, - [496] = 496, + [480] = 401, + [481] = 481, + [482] = 411, + [483] = 408, + [484] = 409, + [485] = 404, + [486] = 413, + [487] = 414, + [488] = 418, + [489] = 407, + [490] = 415, + [491] = 416, + [492] = 424, + [493] = 425, + [494] = 410, + [495] = 412, + [496] = 406, [497] = 497, - [498] = 498, + [498] = 422, [499] = 499, [500] = 500, - [501] = 501, - [502] = 502, + [501] = 499, + [502] = 500, [503] = 503, [504] = 504, [505] = 505, @@ -4586,7 +4595,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [597] = 597, [598] = 598, [599] = 599, - [600] = 600, + [600] = 395, [601] = 601, [602] = 602, [603] = 603, @@ -4598,12 +4607,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [609] = 609, [610] = 610, [611] = 611, - [612] = 612, + [612] = 397, [613] = 613, - [614] = 614, + [614] = 398, [615] = 615, - [616] = 616, - [617] = 617, + [616] = 394, + [617] = 396, [618] = 618, [619] = 619, [620] = 620, @@ -4631,22 +4640,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [642] = 642, [643] = 643, [644] = 644, - [645] = 645, + [645] = 550, [646] = 646, [647] = 647, [648] = 648, - [649] = 389, + [649] = 649, [650] = 650, - [651] = 651, + [651] = 545, [652] = 652, - [653] = 392, + [653] = 653, [654] = 654, [655] = 655, [656] = 656, - [657] = 390, + [657] = 657, [658] = 658, - [659] = 393, - [660] = 391, + [659] = 659, + [660] = 660, [661] = 661, [662] = 662, [663] = 663, @@ -4665,7 +4674,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [676] = 676, [677] = 677, [678] = 678, - [679] = 656, + [679] = 679, [680] = 680, [681] = 681, [682] = 682, @@ -4676,7 +4685,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [687] = 687, [688] = 688, [689] = 689, - [690] = 552, + [690] = 690, [691] = 691, [692] = 692, [693] = 693, @@ -4684,7 +4693,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 650, + [698] = 698, [699] = 699, [700] = 700, [701] = 701, @@ -4734,7 +4743,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [745] = 745, [746] = 746, [747] = 747, - [748] = 685, + [748] = 748, [749] = 749, [750] = 750, [751] = 751, @@ -4782,96 +4791,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [793] = 793, [794] = 794, [795] = 795, - [796] = 793, - [797] = 795, + [796] = 796, + [797] = 797, [798] = 798, - [799] = 794, + [799] = 798, [800] = 800, - [801] = 801, + [801] = 796, [802] = 802, [803] = 803, - [804] = 801, + [804] = 803, [805] = 805, - [806] = 800, + [806] = 806, [807] = 807, - [808] = 805, + [808] = 808, [809] = 809, [810] = 810, - [811] = 807, - [812] = 802, - [813] = 813, + [811] = 809, + [812] = 806, + [813] = 805, [814] = 814, - [815] = 803, - [816] = 816, - [817] = 817, + [815] = 815, + [816] = 807, + [817] = 808, [818] = 818, [819] = 819, [820] = 819, [821] = 821, - [822] = 818, + [822] = 822, [823] = 823, - [824] = 816, - [825] = 825, + [824] = 822, + [825] = 823, [826] = 826, - [827] = 827, - [828] = 823, - [829] = 825, - [830] = 830, + [827] = 826, + [828] = 828, + [829] = 829, + [830] = 828, [831] = 831, [832] = 832, [833] = 833, [834] = 834, - [835] = 835, + [835] = 831, [836] = 832, - [837] = 817, + [837] = 837, [838] = 838, - [839] = 831, - [840] = 830, - [841] = 841, - [842] = 838, - [843] = 841, - [844] = 816, - [845] = 841, - [846] = 816, - [847] = 841, - [848] = 821, - [849] = 849, - [850] = 850, - [851] = 850, - [852] = 850, - [853] = 850, - [854] = 850, + [839] = 839, + [840] = 840, + [841] = 840, + [842] = 842, + [843] = 821, + [844] = 844, + [845] = 829, + [846] = 846, + [847] = 837, + [848] = 839, + [849] = 822, + [850] = 837, + [851] = 822, + [852] = 837, + [853] = 833, + [854] = 854, [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, + [856] = 855, + [857] = 855, + [858] = 855, [859] = 855, - [860] = 857, + [860] = 860, [861] = 861, [862] = 862, - [863] = 858, + [863] = 863, [864] = 864, - [865] = 865, + [865] = 861, [866] = 866, - [867] = 855, - [868] = 858, - [869] = 869, - [870] = 866, + [867] = 867, + [868] = 861, + [869] = 860, + [870] = 870, [871] = 871, - [872] = 861, + [872] = 866, [873] = 861, - [874] = 855, - [875] = 861, - [876] = 861, - [877] = 877, - [878] = 869, - [879] = 857, - [880] = 855, - [881] = 881, - [882] = 882, - [883] = 883, + [874] = 874, + [875] = 866, + [876] = 876, + [877] = 864, + [878] = 860, + [879] = 862, + [880] = 862, + [881] = 862, + [882] = 862, + [883] = 861, [884] = 884, - [885] = 885, + [885] = 884, [886] = 886, [887] = 887, [888] = 888, @@ -4881,209 +4890,209 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [892] = 892, [893] = 893, [894] = 894, - [895] = 882, + [895] = 895, [896] = 896, [897] = 897, - [898] = 894, + [898] = 898, [899] = 899, [900] = 900, [901] = 901, [902] = 902, [903] = 903, - [904] = 886, + [904] = 904, [905] = 905, [906] = 906, [907] = 907, [908] = 908, - [909] = 899, - [910] = 891, - [911] = 893, - [912] = 897, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, [913] = 913, - [914] = 900, + [914] = 914, [915] = 915, [916] = 916, [917] = 917, - [918] = 918, - [919] = 905, - [920] = 920, + [918] = 888, + [919] = 889, + [920] = 890, [921] = 921, - [922] = 906, - [923] = 891, - [924] = 893, - [925] = 897, - [926] = 907, - [927] = 908, + [922] = 893, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 886, + [927] = 927, [928] = 928, [929] = 929, - [930] = 930, + [930] = 893, [931] = 931, - [932] = 932, - [933] = 933, + [932] = 907, + [933] = 908, [934] = 934, [935] = 935, - [936] = 936, - [937] = 882, - [938] = 901, - [939] = 894, - [940] = 899, - [941] = 913, - [942] = 900, - [943] = 943, + [936] = 910, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 913, + [941] = 941, + [942] = 942, + [943] = 914, [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, + [945] = 888, + [946] = 889, + [947] = 890, [948] = 948, - [949] = 886, - [950] = 920, - [951] = 906, - [952] = 952, - [953] = 894, + [949] = 949, + [950] = 915, + [951] = 916, + [952] = 917, + [953] = 931, [954] = 954, - [955] = 955, + [955] = 934, [956] = 956, - [957] = 899, + [957] = 957, [958] = 958, [959] = 959, - [960] = 960, - [961] = 961, - [962] = 900, + [960] = 908, + [961] = 935, + [962] = 910, [963] = 963, [964] = 964, [965] = 965, [966] = 966, - [967] = 936, - [968] = 882, - [969] = 913, - [970] = 970, - [971] = 916, - [972] = 920, + [967] = 967, + [968] = 913, + [969] = 949, + [970] = 915, + [971] = 971, + [972] = 972, [973] = 973, [974] = 974, [975] = 975, [976] = 976, - [977] = 977, - [978] = 916, - [979] = 886, + [977] = 957, + [978] = 978, + [979] = 979, [980] = 980, - [981] = 905, - [982] = 906, - [983] = 907, - [984] = 908, - [985] = 936, - [986] = 943, - [987] = 917, - [988] = 887, - [989] = 989, - [990] = 894, - [991] = 899, - [992] = 918, - [993] = 928, - [994] = 930, - [995] = 935, - [996] = 960, - [997] = 970, - [998] = 973, - [999] = 974, - [1000] = 1000, - [1001] = 886, - [1002] = 905, - [1003] = 920, - [1004] = 906, - [1005] = 907, - [1006] = 908, - [1007] = 945, - [1008] = 948, - [1009] = 963, - [1010] = 980, - [1011] = 961, - [1012] = 958, - [1013] = 883, - [1014] = 884, - [1015] = 888, - [1016] = 890, - [1017] = 896, - [1018] = 902, - [1019] = 891, - [1020] = 893, - [1021] = 897, - [1022] = 1022, - [1023] = 929, - [1024] = 933, - [1025] = 934, - [1026] = 1026, - [1027] = 881, - [1028] = 952, - [1029] = 954, - [1030] = 955, - [1031] = 956, - [1032] = 959, - [1033] = 1033, - [1034] = 965, - [1035] = 966, - [1036] = 916, - [1037] = 1022, - [1038] = 1026, - [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 892, - [1044] = 1039, - [1045] = 943, - [1046] = 1040, - [1047] = 1041, - [1048] = 1042, - [1049] = 936, - [1050] = 1033, - [1051] = 1051, - [1052] = 1052, - [1053] = 609, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 609, + [981] = 981, + [982] = 982, + [983] = 931, + [984] = 934, + [985] = 985, + [986] = 935, + [987] = 907, + [988] = 908, + [989] = 949, + [990] = 910, + [991] = 991, + [992] = 992, + [993] = 913, + [994] = 914, + [995] = 915, + [996] = 916, + [997] = 886, + [998] = 959, + [999] = 980, + [1000] = 917, + [1001] = 1001, + [1002] = 907, + [1003] = 908, + [1004] = 941, + [1005] = 942, + [1006] = 974, + [1007] = 976, + [1008] = 979, + [1009] = 892, + [1010] = 902, + [1011] = 903, + [1012] = 1012, + [1013] = 913, + [1014] = 914, + [1015] = 949, + [1016] = 915, + [1017] = 916, + [1018] = 917, + [1019] = 958, + [1020] = 978, + [1021] = 981, + [1022] = 982, + [1023] = 1001, + [1024] = 891, + [1025] = 894, + [1026] = 899, + [1027] = 906, + [1028] = 909, + [1029] = 921, + [1030] = 924, + [1031] = 888, + [1032] = 889, + [1033] = 890, + [1034] = 963, + [1035] = 972, + [1036] = 973, + [1037] = 985, + [1038] = 991, + [1039] = 895, + [1040] = 896, + [1041] = 897, + [1042] = 898, + [1043] = 901, + [1044] = 905, + [1045] = 911, + [1046] = 912, + [1047] = 893, + [1048] = 954, + [1049] = 956, + [1050] = 964, + [1051] = 966, + [1052] = 971, + [1053] = 975, + [1054] = 923, + [1055] = 931, + [1056] = 934, + [1057] = 907, [1058] = 1058, [1059] = 1059, - [1060] = 1060, + [1060] = 608, [1061] = 1061, [1062] = 1062, [1063] = 1063, - [1064] = 1064, + [1064] = 608, [1065] = 1065, [1066] = 1066, - [1067] = 392, - [1068] = 390, - [1069] = 393, - [1070] = 391, - [1071] = 389, - [1072] = 201, - [1073] = 1073, - [1074] = 405, - [1075] = 395, - [1076] = 200, - [1077] = 1051, - [1078] = 1078, - [1079] = 621, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 402, + [1074] = 398, + [1075] = 394, + [1076] = 396, + [1077] = 1077, + [1078] = 204, + [1079] = 1079, + [1080] = 419, + [1081] = 212, + [1082] = 395, + [1083] = 397, [1084] = 1084, - [1085] = 1085, - [1086] = 523, - [1087] = 1087, + [1085] = 574, + [1086] = 1086, + [1087] = 648, [1088] = 1088, [1089] = 1089, - [1090] = 564, - [1091] = 684, - [1092] = 753, - [1093] = 1093, + [1090] = 765, + [1091] = 1091, + [1092] = 1092, + [1093] = 1058, [1094] = 1094, [1095] = 1095, - [1096] = 1096, - [1097] = 1097, + [1096] = 686, + [1097] = 720, [1098] = 1098, [1099] = 1099, [1100] = 1100, @@ -5092,413 +5101,413 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1103] = 1103, [1104] = 1104, [1105] = 1105, - [1106] = 756, - [1107] = 532, - [1108] = 682, - [1109] = 533, - [1110] = 534, - [1111] = 535, - [1112] = 536, - [1113] = 537, - [1114] = 538, - [1115] = 686, - [1116] = 539, - [1117] = 687, - [1118] = 540, - [1119] = 541, - [1120] = 1052, - [1121] = 609, - [1122] = 542, - [1123] = 1123, - [1124] = 688, - [1125] = 1060, - [1126] = 689, - [1127] = 1127, - [1128] = 543, - [1129] = 691, - [1130] = 544, - [1131] = 545, - [1132] = 1132, - [1133] = 1133, - [1134] = 546, - [1135] = 547, - [1136] = 548, - [1137] = 549, - [1138] = 550, - [1139] = 551, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 609, - [1144] = 692, - [1145] = 553, - [1146] = 693, - [1147] = 554, - [1148] = 555, - [1149] = 556, - [1150] = 557, - [1151] = 558, - [1152] = 559, - [1153] = 694, - [1154] = 695, - [1155] = 655, - [1156] = 678, - [1157] = 560, - [1158] = 561, - [1159] = 696, - [1160] = 562, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 538, + [1114] = 503, + [1115] = 779, + [1116] = 780, + [1117] = 781, + [1118] = 782, + [1119] = 783, + [1120] = 785, + [1121] = 786, + [1122] = 504, + [1123] = 505, + [1124] = 506, + [1125] = 507, + [1126] = 508, + [1127] = 509, + [1128] = 512, + [1129] = 513, + [1130] = 514, + [1131] = 515, + [1132] = 516, + [1133] = 517, + [1134] = 518, + [1135] = 519, + [1136] = 520, + [1137] = 521, + [1138] = 522, + [1139] = 787, + [1140] = 524, + [1141] = 526, + [1142] = 527, + [1143] = 528, + [1144] = 529, + [1145] = 1145, + [1146] = 1146, + [1147] = 553, + [1148] = 1070, + [1149] = 554, + [1150] = 1150, + [1151] = 556, + [1152] = 557, + [1153] = 558, + [1154] = 559, + [1155] = 560, + [1156] = 1156, + [1157] = 561, + [1158] = 1158, + [1159] = 563, + [1160] = 564, [1161] = 1161, - [1162] = 697, - [1163] = 1063, - [1164] = 699, - [1165] = 700, - [1166] = 563, - [1167] = 701, - [1168] = 763, - [1169] = 1169, - [1170] = 702, - [1171] = 1169, - [1172] = 565, - [1173] = 703, - [1174] = 566, - [1175] = 646, - [1176] = 704, - [1177] = 705, - [1178] = 567, - [1179] = 568, - [1180] = 707, - [1181] = 708, - [1182] = 569, - [1183] = 570, - [1184] = 571, - [1185] = 709, - [1186] = 572, - [1187] = 573, - [1188] = 574, - [1189] = 575, - [1190] = 576, - [1191] = 577, - [1192] = 578, - [1193] = 710, - [1194] = 711, - [1195] = 579, - [1196] = 1059, - [1197] = 712, - [1198] = 713, - [1199] = 580, - [1200] = 714, - [1201] = 581, - [1202] = 582, - [1203] = 1203, - [1204] = 715, - [1205] = 1061, - [1206] = 1206, - [1207] = 583, - [1208] = 1208, - [1209] = 584, - [1210] = 585, - [1211] = 586, - [1212] = 587, - [1213] = 588, - [1214] = 716, - [1215] = 717, - [1216] = 718, - [1217] = 589, - [1218] = 722, - [1219] = 1058, - [1220] = 590, - [1221] = 1221, - [1222] = 591, - [1223] = 1223, - [1224] = 592, - [1225] = 593, - [1226] = 1226, - [1227] = 594, - [1228] = 725, - [1229] = 1229, - [1230] = 595, - [1231] = 596, - [1232] = 1232, - [1233] = 597, - [1234] = 1234, - [1235] = 651, - [1236] = 598, - [1237] = 599, - [1238] = 600, - [1239] = 601, - [1240] = 602, - [1241] = 1063, - [1242] = 339, - [1243] = 1243, - [1244] = 603, - [1245] = 604, - [1246] = 1169, - [1247] = 658, - [1248] = 605, - [1249] = 662, - [1250] = 668, - [1251] = 606, - [1252] = 681, - [1253] = 607, - [1254] = 727, - [1255] = 683, - [1256] = 608, - [1257] = 728, - [1258] = 1258, - [1259] = 719, - [1260] = 720, - [1261] = 648, - [1262] = 729, - [1263] = 721, - [1264] = 494, - [1265] = 764, - [1266] = 730, - [1267] = 731, - [1268] = 765, - [1269] = 724, - [1270] = 732, - [1271] = 733, - [1272] = 734, - [1273] = 766, - [1274] = 735, - [1275] = 767, - [1276] = 736, - [1277] = 1277, - [1278] = 761, - [1279] = 1279, + [1162] = 565, + [1163] = 566, + [1164] = 567, + [1165] = 568, + [1166] = 569, + [1167] = 570, + [1168] = 571, + [1169] = 572, + [1170] = 1170, + [1171] = 1171, + [1172] = 575, + [1173] = 576, + [1174] = 577, + [1175] = 578, + [1176] = 579, + [1177] = 580, + [1178] = 581, + [1179] = 582, + [1180] = 608, + [1181] = 1181, + [1182] = 583, + [1183] = 584, + [1184] = 585, + [1185] = 586, + [1186] = 553, + [1187] = 587, + [1188] = 588, + [1189] = 1189, + [1190] = 1190, + [1191] = 589, + [1192] = 590, + [1193] = 591, + [1194] = 592, + [1195] = 594, + [1196] = 595, + [1197] = 596, + [1198] = 597, + [1199] = 598, + [1200] = 599, + [1201] = 601, + [1202] = 602, + [1203] = 603, + [1204] = 604, + [1205] = 605, + [1206] = 606, + [1207] = 608, + [1208] = 609, + [1209] = 610, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 621, + [1215] = 608, + [1216] = 623, + [1217] = 624, + [1218] = 625, + [1219] = 626, + [1220] = 627, + [1221] = 628, + [1222] = 629, + [1223] = 630, + [1224] = 1224, + [1225] = 631, + [1226] = 632, + [1227] = 633, + [1228] = 634, + [1229] = 635, + [1230] = 636, + [1231] = 637, + [1232] = 638, + [1233] = 639, + [1234] = 641, + [1235] = 642, + [1236] = 646, + [1237] = 1212, + [1238] = 440, + [1239] = 649, + [1240] = 1240, + [1241] = 650, + [1242] = 652, + [1243] = 653, + [1244] = 654, + [1245] = 655, + [1246] = 656, + [1247] = 523, + [1248] = 657, + [1249] = 658, + [1250] = 659, + [1251] = 1251, + [1252] = 660, + [1253] = 661, + [1254] = 1059, + [1255] = 662, + [1256] = 663, + [1257] = 1068, + [1258] = 664, + [1259] = 665, + [1260] = 778, + [1261] = 668, + [1262] = 1262, + [1263] = 669, + [1264] = 1264, + [1265] = 1265, + [1266] = 670, + [1267] = 1267, + [1268] = 671, + [1269] = 672, + [1270] = 673, + [1271] = 549, + [1272] = 551, + [1273] = 674, + [1274] = 675, + [1275] = 676, + [1276] = 677, + [1277] = 678, + [1278] = 687, + [1279] = 688, [1280] = 1280, - [1281] = 726, - [1282] = 768, - [1283] = 1283, - [1284] = 745, - [1285] = 750, - [1286] = 752, - [1287] = 498, - [1288] = 499, + [1281] = 1281, + [1282] = 1067, + [1283] = 1070, + [1284] = 1284, + [1285] = 1212, + [1286] = 693, + [1287] = 1066, + [1288] = 1288, [1289] = 1289, - [1290] = 769, - [1291] = 1291, - [1292] = 770, - [1293] = 435, - [1294] = 771, - [1295] = 1295, + [1290] = 694, + [1291] = 696, + [1292] = 697, + [1293] = 1065, + [1294] = 1294, + [1295] = 698, [1296] = 1296, - [1297] = 1297, - [1298] = 1298, + [1297] = 699, + [1298] = 700, [1299] = 1299, - [1300] = 1300, - [1301] = 772, - [1302] = 773, - [1303] = 610, - [1304] = 611, - [1305] = 1305, - [1306] = 612, - [1307] = 613, - [1308] = 738, - [1309] = 739, - [1310] = 614, - [1311] = 774, - [1312] = 1312, - [1313] = 740, - [1314] = 775, - [1315] = 741, - [1316] = 776, - [1317] = 742, - [1318] = 743, - [1319] = 615, - [1320] = 1320, - [1321] = 744, - [1322] = 777, - [1323] = 746, - [1324] = 778, - [1325] = 779, - [1326] = 747, - [1327] = 780, - [1328] = 751, - [1329] = 1329, - [1330] = 495, - [1331] = 647, - [1332] = 616, - [1333] = 496, - [1334] = 497, + [1300] = 701, + [1301] = 1301, + [1302] = 702, + [1303] = 1303, + [1304] = 607, + [1305] = 703, + [1306] = 704, + [1307] = 290, + [1308] = 613, + [1309] = 615, + [1310] = 618, + [1311] = 682, + [1312] = 683, + [1313] = 685, + [1314] = 525, + [1315] = 539, + [1316] = 540, + [1317] = 541, + [1318] = 542, + [1319] = 544, + [1320] = 547, + [1321] = 548, + [1322] = 552, + [1323] = 555, + [1324] = 1324, + [1325] = 705, + [1326] = 1326, + [1327] = 706, + [1328] = 707, + [1329] = 708, + [1330] = 709, + [1331] = 710, + [1332] = 711, + [1333] = 1333, + [1334] = 712, [1335] = 1335, [1336] = 1336, - [1337] = 500, - [1338] = 617, - [1339] = 618, - [1340] = 619, - [1341] = 501, - [1342] = 652, - [1343] = 502, - [1344] = 654, - [1345] = 1345, - [1346] = 503, - [1347] = 661, - [1348] = 504, - [1349] = 505, - [1350] = 663, - [1351] = 506, - [1352] = 507, - [1353] = 508, - [1354] = 622, - [1355] = 623, - [1356] = 509, - [1357] = 510, - [1358] = 511, - [1359] = 512, - [1360] = 513, - [1361] = 609, - [1362] = 514, - [1363] = 664, - [1364] = 515, - [1365] = 516, - [1366] = 517, - [1367] = 518, - [1368] = 652, - [1369] = 665, - [1370] = 519, - [1371] = 624, - [1372] = 520, - [1373] = 521, - [1374] = 522, - [1375] = 762, - [1376] = 666, - [1377] = 524, - [1378] = 667, - [1379] = 531, - [1380] = 625, - [1381] = 525, - [1382] = 626, - [1383] = 627, - [1384] = 669, - [1385] = 526, - [1386] = 670, - [1387] = 628, - [1388] = 527, - [1389] = 528, - [1390] = 529, - [1391] = 629, - [1392] = 671, - [1393] = 630, - [1394] = 530, - [1395] = 631, - [1396] = 632, - [1397] = 781, - [1398] = 672, - [1399] = 633, - [1400] = 634, - [1401] = 1401, - [1402] = 635, - [1403] = 673, - [1404] = 636, - [1405] = 637, - [1406] = 638, - [1407] = 640, - [1408] = 674, - [1409] = 641, - [1410] = 642, - [1411] = 643, - [1412] = 644, - [1413] = 645, - [1414] = 675, - [1415] = 676, - [1416] = 754, - [1417] = 1417, - [1418] = 755, - [1419] = 1169, - [1420] = 677, - [1421] = 757, - [1422] = 758, - [1423] = 759, - [1424] = 760, - [1425] = 737, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 172, - [1432] = 1432, + [1337] = 713, + [1338] = 714, + [1339] = 717, + [1340] = 719, + [1341] = 721, + [1342] = 722, + [1343] = 723, + [1344] = 619, + [1345] = 724, + [1346] = 725, + [1347] = 726, + [1348] = 620, + [1349] = 727, + [1350] = 728, + [1351] = 729, + [1352] = 622, + [1353] = 640, + [1354] = 643, + [1355] = 730, + [1356] = 731, + [1357] = 732, + [1358] = 733, + [1359] = 734, + [1360] = 735, + [1361] = 736, + [1362] = 737, + [1363] = 738, + [1364] = 739, + [1365] = 740, + [1366] = 741, + [1367] = 742, + [1368] = 743, + [1369] = 647, + [1370] = 667, + [1371] = 744, + [1372] = 745, + [1373] = 746, + [1374] = 747, + [1375] = 748, + [1376] = 1376, + [1377] = 679, + [1378] = 1378, + [1379] = 753, + [1380] = 754, + [1381] = 680, + [1382] = 755, + [1383] = 756, + [1384] = 681, + [1385] = 757, + [1386] = 758, + [1387] = 759, + [1388] = 760, + [1389] = 761, + [1390] = 762, + [1391] = 764, + [1392] = 1392, + [1393] = 766, + [1394] = 767, + [1395] = 768, + [1396] = 769, + [1397] = 770, + [1398] = 689, + [1399] = 771, + [1400] = 772, + [1401] = 773, + [1402] = 690, + [1403] = 774, + [1404] = 691, + [1405] = 692, + [1406] = 695, + [1407] = 715, + [1408] = 716, + [1409] = 718, + [1410] = 749, + [1411] = 750, + [1412] = 751, + [1413] = 752, + [1414] = 763, + [1415] = 784, + [1416] = 510, + [1417] = 511, + [1418] = 530, + [1419] = 532, + [1420] = 533, + [1421] = 534, + [1422] = 535, + [1423] = 536, + [1424] = 537, + [1425] = 775, + [1426] = 776, + [1427] = 777, + [1428] = 1212, + [1429] = 543, + [1430] = 546, + [1431] = 1431, + [1432] = 666, [1433] = 1433, [1434] = 1434, [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, + [1439] = 161, + [1440] = 395, + [1441] = 404, [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 389, + [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 420, - [1449] = 406, - [1450] = 407, - [1451] = 408, - [1452] = 410, - [1453] = 411, - [1454] = 392, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, [1455] = 1455, [1456] = 1456, [1457] = 1457, [1458] = 1458, - [1459] = 1459, - [1460] = 419, - [1461] = 395, - [1462] = 397, - [1463] = 1463, - [1464] = 399, - [1465] = 403, - [1466] = 405, - [1467] = 390, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, + [1459] = 212, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 409, + [1464] = 1464, + [1465] = 411, + [1466] = 180, + [1467] = 1467, + [1468] = 413, + [1469] = 414, + [1470] = 416, + [1471] = 424, + [1472] = 160, [1473] = 1473, - [1474] = 200, - [1475] = 416, - [1476] = 398, - [1477] = 400, + [1474] = 1474, + [1475] = 407, + [1476] = 1476, + [1477] = 1477, [1478] = 1478, [1479] = 1479, [1480] = 1480, [1481] = 1481, - [1482] = 1482, + [1482] = 396, [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 170, - [1487] = 201, - [1488] = 409, - [1489] = 412, + [1486] = 1486, + [1487] = 1070, + [1488] = 397, + [1489] = 1489, [1490] = 1490, - [1491] = 413, + [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 1494, - [1495] = 165, - [1496] = 393, - [1497] = 417, + [1494] = 422, + [1495] = 398, + [1496] = 1496, + [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 1500, + [1500] = 169, [1501] = 1501, [1502] = 1502, [1503] = 1503, [1504] = 1504, - [1505] = 396, + [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 391, + [1509] = 1509, [1510] = 1510, [1511] = 1511, - [1512] = 1512, + [1512] = 408, [1513] = 1513, [1514] = 1514, [1515] = 1515, @@ -5506,37 +5515,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1520, - [1521] = 401, - [1522] = 1522, - [1523] = 171, + [1520] = 406, + [1521] = 1521, + [1522] = 204, + [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, + [1526] = 412, + [1527] = 419, + [1528] = 401, [1529] = 1529, - [1530] = 1530, - [1531] = 1063, + [1530] = 418, + [1531] = 1531, [1532] = 1532, [1533] = 1533, [1534] = 1534, [1535] = 1535, [1536] = 1536, - [1537] = 1537, + [1537] = 403, [1538] = 1538, [1539] = 1539, [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 168, - [1546] = 1063, - [1547] = 1547, - [1548] = 1548, - [1549] = 1063, - [1550] = 1550, + [1543] = 394, + [1544] = 425, + [1545] = 183, + [1546] = 423, + [1547] = 410, + [1548] = 402, + [1549] = 1549, + [1550] = 415, [1551] = 1551, [1552] = 1552, [1553] = 1553, @@ -5544,625 +5553,625 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1555] = 1555, [1556] = 1556, [1557] = 1557, - [1558] = 1558, - [1559] = 1559, + [1558] = 1070, + [1559] = 1070, [1560] = 1560, [1561] = 1561, [1562] = 1562, [1563] = 1563, [1564] = 1564, - [1565] = 1100, - [1566] = 1064, + [1565] = 1565, + [1566] = 1566, [1567] = 1567, - [1568] = 1062, - [1569] = 1065, - [1570] = 1550, - [1571] = 1552, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, + [1568] = 1568, + [1569] = 1108, + [1570] = 1570, + [1571] = 1571, + [1572] = 1562, + [1573] = 1564, + [1574] = 1565, [1575] = 1575, - [1576] = 1576, - [1577] = 1574, + [1576] = 1071, + [1577] = 1577, [1578] = 1578, - [1579] = 1579, - [1580] = 1580, + [1579] = 1069, + [1580] = 1072, [1581] = 1581, [1582] = 1582, [1583] = 1583, - [1584] = 1100, - [1585] = 1100, + [1584] = 1584, + [1585] = 1585, [1586] = 1586, - [1587] = 1066, - [1588] = 1283, - [1589] = 1123, - [1590] = 1081, - [1591] = 1088, - [1592] = 1084, - [1593] = 1283, - [1594] = 1087, - [1595] = 1280, - [1596] = 1401, - [1597] = 1401, - [1598] = 1089, - [1599] = 1526, - [1600] = 1540, - [1601] = 1540, - [1602] = 1123, - [1603] = 1280, - [1604] = 1093, - [1605] = 1078, - [1606] = 1082, - [1607] = 1607, - [1608] = 1105, - [1609] = 1097, - [1610] = 1433, - [1611] = 1099, - [1612] = 1439, - [1613] = 1279, - [1614] = 1540, - [1615] = 1607, - [1616] = 1229, - [1617] = 1335, - [1618] = 1141, - [1619] = 1607, - [1620] = 1620, - [1621] = 339, - [1622] = 1526, - [1623] = 1623, - [1624] = 1439, - [1625] = 1620, - [1626] = 1626, - [1627] = 1627, - [1628] = 1623, - [1629] = 1627, - [1630] = 1417, - [1631] = 1417, - [1632] = 1627, - [1633] = 1623, - [1634] = 1627, - [1635] = 1623, - [1636] = 1548, - [1637] = 1547, - [1638] = 1607, - [1639] = 1095, - [1640] = 1433, - [1641] = 1626, - [1642] = 392, - [1643] = 1223, - [1644] = 1562, - [1645] = 1243, - [1646] = 1572, - [1647] = 1336, - [1648] = 1226, - [1649] = 1142, - [1650] = 1161, - [1651] = 1575, - [1652] = 1232, - [1653] = 1234, - [1654] = 1547, - [1655] = 1583, - [1656] = 1551, - [1657] = 389, - [1658] = 1658, - [1659] = 390, - [1660] = 393, - [1661] = 391, - [1662] = 1300, - [1663] = 1320, - [1664] = 1555, - [1665] = 1665, - [1666] = 1203, - [1667] = 1206, - [1668] = 1557, - [1669] = 1559, - [1670] = 1329, - [1671] = 1579, - [1672] = 1578, - [1673] = 1556, - [1674] = 1674, - [1675] = 1675, - [1676] = 1208, - [1677] = 1658, - [1678] = 1678, - [1679] = 1679, - [1680] = 1560, - [1681] = 1289, - [1682] = 1291, - [1683] = 1675, - [1684] = 1297, - [1685] = 1298, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1108, + [1596] = 1596, + [1597] = 1108, + [1598] = 1079, + [1599] = 1158, + [1600] = 1095, + [1601] = 1088, + [1602] = 1099, + [1603] = 1158, + [1604] = 1445, + [1605] = 1501, + [1606] = 1213, + [1607] = 1445, + [1608] = 1161, + [1609] = 1091, + [1610] = 1181, + [1611] = 1092, + [1612] = 1161, + [1613] = 1181, + [1614] = 1084, + [1615] = 1089, + [1616] = 1213, + [1617] = 1098, + [1618] = 1516, + [1619] = 1619, + [1620] = 1516, + [1621] = 1109, + [1622] = 1501, + [1623] = 1103, + [1624] = 1107, + [1625] = 1625, + [1626] = 1110, + [1627] = 1498, + [1628] = 1431, + [1629] = 1210, + [1630] = 1280, + [1631] = 1376, + [1632] = 1625, + [1633] = 290, + [1634] = 1445, + [1635] = 1498, + [1636] = 1619, + [1637] = 1637, + [1638] = 1251, + [1639] = 1639, + [1640] = 1640, + [1641] = 1639, + [1642] = 1640, + [1643] = 1639, + [1644] = 1640, + [1645] = 1557, + [1646] = 1556, + [1647] = 1625, + [1648] = 1640, + [1649] = 1637, + [1650] = 1639, + [1651] = 1251, + [1652] = 1625, + [1653] = 396, + [1654] = 1171, + [1655] = 1591, + [1656] = 1150, + [1657] = 1592, + [1658] = 1392, + [1659] = 1284, + [1660] = 1211, + [1661] = 1288, + [1662] = 1281, + [1663] = 1289, + [1664] = 1378, + [1665] = 1294, + [1666] = 1585, + [1667] = 1189, + [1668] = 1296, + [1669] = 395, + [1670] = 397, + [1671] = 398, + [1672] = 394, + [1673] = 1673, + [1674] = 1190, + [1675] = 1593, + [1676] = 1586, + [1677] = 1557, + [1678] = 1587, + [1679] = 1581, + [1680] = 1582, + [1681] = 1262, + [1682] = 1560, + [1683] = 1299, + [1684] = 1684, + [1685] = 1588, [1686] = 1563, - [1687] = 1299, - [1688] = 1221, - [1689] = 1296, - [1690] = 1580, - [1691] = 1312, - [1692] = 1581, - [1693] = 1127, - [1694] = 1582, - [1695] = 1674, - [1696] = 1132, - [1697] = 1133, - [1698] = 1548, - [1699] = 1576, - [1700] = 1277, - [1701] = 1561, - [1702] = 1564, - [1703] = 1501, - [1704] = 1542, - [1705] = 1543, - [1706] = 1706, - [1707] = 1707, - [1708] = 1463, - [1709] = 1432, - [1710] = 1710, - [1711] = 1437, - [1712] = 1494, - [1713] = 1434, - [1714] = 1519, - [1715] = 1435, - [1716] = 1528, - [1717] = 1530, - [1718] = 1718, - [1719] = 1446, - [1720] = 1533, - [1721] = 1534, - [1722] = 1447, - [1723] = 1436, - [1724] = 1429, - [1725] = 1563, - [1726] = 1726, + [1687] = 1687, + [1688] = 1301, + [1689] = 1689, + [1690] = 1303, + [1691] = 1589, + [1692] = 1265, + [1693] = 1156, + [1694] = 1590, + [1695] = 1583, + [1696] = 1584, + [1697] = 1697, + [1698] = 1324, + [1699] = 1326, + [1700] = 1684, + [1701] = 1567, + [1702] = 1333, + [1703] = 1687, + [1704] = 1556, + [1705] = 1594, + [1706] = 1267, + [1707] = 1689, + [1708] = 1335, + [1709] = 1709, + [1710] = 1577, + [1711] = 1578, + [1712] = 1336, + [1713] = 1264, + [1714] = 1561, + [1715] = 1585, + [1716] = 1510, + [1717] = 1717, + [1718] = 1485, + [1719] = 1492, + [1720] = 1444, + [1721] = 1509, + [1722] = 1531, + [1723] = 1723, + [1724] = 1551, + [1725] = 1542, + [1726] = 1524, [1727] = 1727, - [1728] = 1438, - [1729] = 1729, - [1730] = 1440, - [1731] = 1455, - [1732] = 1442, - [1733] = 1456, - [1734] = 1058, - [1735] = 1443, - [1736] = 1557, - [1737] = 1458, - [1738] = 1444, - [1739] = 1459, - [1740] = 1740, - [1741] = 1576, - [1742] = 1559, + [1728] = 1489, + [1729] = 1490, + [1730] = 1493, + [1731] = 1467, + [1732] = 1532, + [1733] = 1540, + [1734] = 1477, + [1735] = 1478, + [1736] = 1525, + [1737] = 1529, + [1738] = 1521, + [1739] = 1739, + [1740] = 1491, + [1741] = 1741, + [1742] = 1742, [1743] = 1581, - [1744] = 1441, - [1745] = 1560, - [1746] = 1561, - [1747] = 1562, - [1748] = 1572, - [1749] = 1575, - [1750] = 1578, - [1751] = 1580, - [1752] = 1582, - [1753] = 1583, - [1754] = 1551, - [1755] = 1555, - [1756] = 1468, - [1757] = 1469, - [1758] = 1472, - [1759] = 1492, - [1760] = 1473, - [1761] = 1564, - [1762] = 1493, - [1763] = 1763, - [1764] = 1556, - [1765] = 1478, - [1766] = 1480, - [1767] = 1481, + [1744] = 1452, + [1745] = 1456, + [1746] = 1582, + [1747] = 1496, + [1748] = 1561, + [1749] = 1560, + [1750] = 1567, + [1751] = 1481, + [1752] = 1535, + [1753] = 1552, + [1754] = 1517, + [1755] = 1503, + [1756] = 1505, + [1757] = 1065, + [1758] = 1483, + [1759] = 1515, + [1760] = 1514, + [1761] = 1484, + [1762] = 1519, + [1763] = 1536, + [1764] = 1764, + [1765] = 1502, + [1766] = 1577, + [1767] = 1578, [1768] = 1768, - [1769] = 1507, - [1770] = 1482, - [1771] = 1483, - [1772] = 1484, - [1773] = 1513, - [1774] = 1514, - [1775] = 1515, - [1776] = 1485, - [1777] = 1579, - [1778] = 1498, - [1779] = 1499, - [1780] = 1518, - [1781] = 1500, - [1782] = 1502, - [1783] = 1503, - [1784] = 1504, - [1785] = 1520, - [1786] = 1522, - [1787] = 1510, - [1788] = 1511, - [1789] = 1512, - [1790] = 1490, - [1791] = 1426, - [1792] = 435, - [1793] = 420, - [1794] = 407, - [1795] = 408, - [1796] = 1796, - [1797] = 410, - [1798] = 411, - [1799] = 1506, - [1800] = 1563, - [1801] = 1457, - [1802] = 419, - [1803] = 1576, - [1804] = 397, - [1805] = 1508, - [1806] = 399, - [1807] = 1581, - [1808] = 403, - [1809] = 1809, - [1810] = 1560, - [1811] = 1561, - [1812] = 1562, - [1813] = 1572, - [1814] = 1575, - [1815] = 1578, - [1816] = 1580, - [1817] = 1582, - [1818] = 1583, - [1819] = 1819, - [1820] = 1555, - [1821] = 1470, - [1822] = 1471, - [1823] = 416, - [1824] = 398, - [1825] = 1556, - [1826] = 400, - [1827] = 1479, - [1828] = 1529, - [1829] = 409, - [1830] = 412, - [1831] = 413, - [1832] = 417, - [1833] = 396, - [1834] = 401, - [1835] = 165, - [1836] = 168, - [1837] = 406, - [1838] = 170, - [1839] = 1563, - [1840] = 171, - [1841] = 395, - [1842] = 1581, - [1843] = 172, - [1844] = 405, - [1845] = 1556, - [1846] = 200, - [1847] = 201, - [1848] = 1848, - [1849] = 1516, - [1850] = 1850, - [1851] = 1517, - [1852] = 1428, - [1853] = 1729, - [1854] = 1809, - [1855] = 1524, - [1856] = 1532, - [1857] = 1706, - [1858] = 1525, - [1859] = 1859, - [1860] = 1860, - [1861] = 1726, - [1862] = 1862, - [1863] = 1863, - [1864] = 1527, - [1865] = 1859, - [1866] = 1535, - [1867] = 1848, - [1868] = 1536, - [1869] = 1707, - [1870] = 1710, - [1871] = 1871, - [1872] = 1796, - [1873] = 1871, - [1874] = 1874, - [1875] = 1875, - [1876] = 1537, - [1877] = 1538, - [1878] = 1878, - [1879] = 1874, - [1880] = 1539, - [1881] = 1809, - [1882] = 1557, - [1883] = 1559, - [1884] = 1706, - [1885] = 1564, - [1886] = 1579, - [1887] = 1726, - [1888] = 1707, - [1889] = 1871, - [1890] = 1809, - [1891] = 1706, - [1892] = 1726, - [1893] = 1707, - [1894] = 1871, - [1895] = 1809, - [1896] = 1726, - [1897] = 1707, - [1898] = 1871, - [1899] = 1809, - [1900] = 1726, - [1901] = 1707, - [1902] = 1871, - [1903] = 1809, - [1904] = 1726, - [1905] = 1905, - [1906] = 1707, - [1907] = 1871, - [1908] = 1541, - [1909] = 1909, - [1910] = 1875, + [1769] = 1769, + [1770] = 1583, + [1771] = 1584, + [1772] = 1585, + [1773] = 1586, + [1774] = 1587, + [1775] = 1588, + [1776] = 1589, + [1777] = 1590, + [1778] = 1591, + [1779] = 1592, + [1780] = 1593, + [1781] = 1781, + [1782] = 1434, + [1783] = 1435, + [1784] = 1474, + [1785] = 1442, + [1786] = 1450, + [1787] = 1480, + [1788] = 1563, + [1789] = 1789, + [1790] = 1553, + [1791] = 1457, + [1792] = 1511, + [1793] = 1793, + [1794] = 1454, + [1795] = 1464, + [1796] = 1523, + [1797] = 1506, + [1798] = 1594, + [1799] = 1448, + [1800] = 1451, + [1801] = 1479, + [1802] = 1458, + [1803] = 1460, + [1804] = 1461, + [1805] = 1462, + [1806] = 1473, + [1807] = 1555, + [1808] = 1497, + [1809] = 1499, + [1810] = 440, + [1811] = 409, + [1812] = 413, + [1813] = 414, + [1814] = 416, + [1815] = 424, + [1816] = 1816, + [1817] = 1567, + [1818] = 1508, + [1819] = 412, + [1820] = 1577, + [1821] = 1578, + [1822] = 418, + [1823] = 403, + [1824] = 423, + [1825] = 1825, + [1826] = 1443, + [1827] = 1583, + [1828] = 1584, + [1829] = 1586, + [1830] = 1587, + [1831] = 1588, + [1832] = 1589, + [1833] = 1590, + [1834] = 1591, + [1835] = 1593, + [1836] = 1436, + [1837] = 1437, + [1838] = 1563, + [1839] = 407, + [1840] = 408, + [1841] = 410, + [1842] = 1554, + [1843] = 1538, + [1844] = 401, + [1845] = 404, + [1846] = 415, + [1847] = 1594, + [1848] = 425, + [1849] = 406, + [1850] = 422, + [1851] = 183, + [1852] = 169, + [1853] = 411, + [1854] = 160, + [1855] = 1567, + [1856] = 161, + [1857] = 1577, + [1858] = 419, + [1859] = 180, + [1860] = 402, + [1861] = 1563, + [1862] = 1594, + [1863] = 1455, + [1864] = 212, + [1865] = 204, + [1866] = 1866, + [1867] = 1789, + [1868] = 1868, + [1869] = 1476, + [1870] = 1870, + [1871] = 1486, + [1872] = 1717, + [1873] = 1873, + [1874] = 1518, + [1875] = 1866, + [1876] = 1541, + [1877] = 1549, + [1878] = 1449, + [1879] = 1793, + [1880] = 1723, + [1881] = 1727, + [1882] = 1741, + [1883] = 1816, + [1884] = 1825, + [1885] = 1885, + [1886] = 1885, + [1887] = 1887, + [1888] = 1888, + [1889] = 1868, + [1890] = 1581, + [1891] = 1582, + [1892] = 1870, + [1893] = 1561, + [1894] = 1560, + [1895] = 1717, + [1896] = 1723, + [1897] = 1816, + [1898] = 1868, + [1899] = 1870, + [1900] = 1717, + [1901] = 1868, + [1902] = 1723, + [1903] = 1816, + [1904] = 1868, + [1905] = 1717, + [1906] = 1906, + [1907] = 1723, + [1908] = 1816, + [1909] = 1868, + [1910] = 1717, [1911] = 1911, - [1912] = 1544, - [1913] = 1913, - [1914] = 1427, - [1915] = 1878, - [1916] = 1916, - [1917] = 1917, - [1918] = 1551, - [1919] = 1919, - [1920] = 1920, - [1921] = 1920, - [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 1925, + [1912] = 1912, + [1913] = 1723, + [1914] = 1816, + [1915] = 1868, + [1916] = 1717, + [1917] = 1723, + [1918] = 1816, + [1919] = 1533, + [1920] = 1453, + [1921] = 1539, + [1922] = 1534, + [1923] = 1504, + [1924] = 1507, + [1925] = 1513, [1926] = 1926, - [1927] = 1927, + [1927] = 1438, [1928] = 1928, - [1929] = 1926, + [1929] = 1446, [1930] = 1930, - [1931] = 1931, - [1932] = 1932, - [1933] = 1768, - [1934] = 1922, + [1931] = 1447, + [1932] = 1870, + [1933] = 1933, + [1934] = 1888, [1935] = 1935, - [1936] = 1927, + [1936] = 1592, [1937] = 1937, [1938] = 1938, - [1939] = 1930, - [1940] = 1763, + [1939] = 1939, + [1940] = 1940, [1941] = 1941, [1942] = 1942, - [1943] = 1943, - [1944] = 1924, - [1945] = 1727, - [1946] = 1935, - [1947] = 1938, + [1943] = 1941, + [1944] = 1944, + [1945] = 1739, + [1946] = 1939, + [1947] = 1947, [1948] = 1948, - [1949] = 1941, - [1950] = 1942, - [1951] = 1925, - [1952] = 1932, - [1953] = 1953, - [1954] = 1928, - [1955] = 1922, + [1949] = 1949, + [1950] = 1944, + [1951] = 1951, + [1952] = 1941, + [1953] = 1906, + [1954] = 1940, + [1955] = 1955, [1956] = 1956, - [1957] = 1956, + [1957] = 1957, [1958] = 1958, - [1959] = 1959, - [1960] = 1959, - [1961] = 1961, - [1962] = 1961, - [1963] = 1958, - [1964] = 1964, - [1965] = 1965, + [1959] = 1937, + [1960] = 1960, + [1961] = 1956, + [1962] = 1962, + [1963] = 1949, + [1964] = 1781, + [1965] = 1938, [1966] = 1966, - [1967] = 1967, + [1967] = 1960, [1968] = 1968, - [1969] = 1967, - [1970] = 1967, - [1971] = 1968, - [1972] = 1967, - [1973] = 1967, - [1974] = 1967, - [1975] = 1968, + [1969] = 1947, + [1970] = 1962, + [1971] = 1942, + [1972] = 1948, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, [1976] = 1976, - [1977] = 1976, - [1978] = 172, - [1979] = 170, - [1980] = 1082, - [1981] = 1081, - [1982] = 1078, - [1983] = 1088, + [1977] = 1977, + [1978] = 1976, + [1979] = 1977, + [1980] = 1974, + [1981] = 1975, + [1982] = 1982, + [1983] = 1983, [1984] = 1984, - [1985] = 1279, - [1986] = 1229, - [1987] = 1082, - [1988] = 1335, - [1989] = 1065, - [1990] = 1078, - [1991] = 1081, - [1992] = 1062, - [1993] = 1088, - [1994] = 1064, - [1995] = 1141, - [1996] = 1289, - [1997] = 1095, - [1998] = 1099, - [1999] = 1999, - [2000] = 1105, - [2001] = 1097, - [2002] = 1066, - [2003] = 1084, - [2004] = 1089, - [2005] = 2005, - [2006] = 1203, - [2007] = 1093, - [2008] = 1208, - [2009] = 2009, - [2010] = 2010, - [2011] = 1087, - [2012] = 1206, - [2013] = 2009, - [2014] = 1336, - [2015] = 395, - [2016] = 1133, - [2017] = 2017, - [2018] = 1567, - [2019] = 201, - [2020] = 1226, - [2021] = 1142, + [1985] = 1985, + [1986] = 1985, + [1987] = 1987, + [1988] = 1987, + [1989] = 1987, + [1990] = 1985, + [1991] = 1985, + [1992] = 1985, + [1993] = 1985, + [1994] = 1994, + [1995] = 1994, + [1996] = 180, + [1997] = 160, + [1998] = 1098, + [1999] = 1088, + [2000] = 1099, + [2001] = 2001, + [2002] = 1095, + [2003] = 1280, + [2004] = 1210, + [2005] = 1098, + [2006] = 1431, + [2007] = 1376, + [2008] = 1072, + [2009] = 1099, + [2010] = 1071, + [2011] = 1095, + [2012] = 1069, + [2013] = 1088, + [2014] = 1107, + [2015] = 1103, + [2016] = 2016, + [2017] = 1324, + [2018] = 1079, + [2019] = 1109, + [2020] = 1110, + [2021] = 1089, [2022] = 2022, - [2023] = 1132, - [2024] = 1312, - [2025] = 1291, - [2026] = 1127, - [2027] = 405, - [2028] = 200, - [2029] = 1223, - [2030] = 1296, - [2031] = 1243, - [2032] = 2022, - [2033] = 2010, - [2034] = 2022, - [2035] = 1457, - [2036] = 1468, - [2037] = 1501, - [2038] = 1502, - [2039] = 1503, - [2040] = 2010, - [2041] = 1504, - [2042] = 1447, - [2043] = 1553, - [2044] = 1554, - [2045] = 1472, - [2046] = 1573, - [2047] = 1455, - [2048] = 1480, - [2049] = 1456, - [2050] = 1481, - [2051] = 2051, - [2052] = 1511, - [2053] = 1469, - [2054] = 1482, - [2055] = 1483, - [2056] = 1446, - [2057] = 1529, - [2058] = 1484, - [2059] = 1485, - [2060] = 1479, - [2061] = 1473, - [2062] = 1458, - [2063] = 1498, - [2064] = 1499, - [2065] = 2065, - [2066] = 1510, - [2067] = 1512, - [2068] = 1459, - [2069] = 1470, - [2070] = 1478, - [2071] = 1471, - [2072] = 1500, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 1221, - [2077] = 1232, - [2078] = 1234, - [2079] = 1297, - [2080] = 1298, - [2081] = 1299, - [2082] = 168, - [2083] = 171, - [2084] = 1329, - [2085] = 1081, - [2086] = 1088, - [2087] = 1078, - [2088] = 2088, - [2089] = 1082, - [2090] = 1088, - [2091] = 1081, - [2092] = 1984, - [2093] = 2093, - [2094] = 1082, - [2095] = 1088, - [2096] = 1082, - [2097] = 2097, - [2098] = 1081, - [2099] = 1078, - [2100] = 1078, - [2101] = 2101, - [2102] = 2102, + [2023] = 2023, + [2024] = 1284, + [2025] = 2022, + [2026] = 1092, + [2027] = 1091, + [2028] = 2028, + [2029] = 1084, + [2030] = 1288, + [2031] = 1289, + [2032] = 212, + [2033] = 2033, + [2034] = 2034, + [2035] = 402, + [2036] = 1264, + [2037] = 1262, + [2038] = 1326, + [2039] = 2034, + [2040] = 1299, + [2041] = 2028, + [2042] = 1171, + [2043] = 419, + [2044] = 1575, + [2045] = 204, + [2046] = 2034, + [2047] = 1211, + [2048] = 1378, + [2049] = 1265, + [2050] = 1150, + [2051] = 1281, + [2052] = 1296, + [2053] = 2028, + [2054] = 1503, + [2055] = 1508, + [2056] = 1505, + [2057] = 1568, + [2058] = 1435, + [2059] = 1457, + [2060] = 1437, + [2061] = 1515, + [2062] = 1448, + [2063] = 1451, + [2064] = 1519, + [2065] = 1442, + [2066] = 1553, + [2067] = 1570, + [2068] = 2068, + [2069] = 1456, + [2070] = 1571, + [2071] = 1511, + [2072] = 1452, + [2073] = 1458, + [2074] = 1460, + [2075] = 1461, + [2076] = 1462, + [2077] = 1473, + [2078] = 1436, + [2079] = 1555, + [2080] = 1497, + [2081] = 1499, + [2082] = 1454, + [2083] = 1464, + [2084] = 1538, + [2085] = 1523, + [2086] = 1506, + [2087] = 1554, + [2088] = 1450, + [2089] = 2089, + [2090] = 1434, + [2091] = 169, + [2092] = 2092, + [2093] = 161, + [2094] = 2094, + [2095] = 1333, + [2096] = 1392, + [2097] = 1294, + [2098] = 1301, + [2099] = 1303, + [2100] = 2100, + [2101] = 1335, + [2102] = 1336, [2103] = 2103, - [2104] = 2104, - [2105] = 2103, - [2106] = 2104, - [2107] = 2107, - [2108] = 2108, - [2109] = 2108, + [2104] = 1098, + [2105] = 1088, + [2106] = 2106, + [2107] = 1095, + [2108] = 1099, + [2109] = 2001, [2110] = 2110, - [2111] = 391, + [2111] = 1098, [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 392, - [2119] = 2119, + [2113] = 1095, + [2114] = 1098, + [2115] = 1095, + [2116] = 1099, + [2117] = 1088, + [2118] = 1088, + [2119] = 1099, [2120] = 2120, [2121] = 2121, [2122] = 2122, - [2123] = 2123, + [2123] = 2120, [2124] = 2124, [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 390, - [2129] = 2123, + [2126] = 2121, + [2127] = 2124, + [2128] = 2128, + [2129] = 2129, [2130] = 2130, - [2131] = 2131, - [2132] = 2130, + [2131] = 1071, + [2132] = 2132, [2133] = 2133, - [2134] = 2134, - [2135] = 1064, - [2136] = 1078, - [2137] = 2005, - [2138] = 1082, - [2139] = 1081, - [2140] = 1088, + [2134] = 395, + [2135] = 1098, + [2136] = 2136, + [2137] = 1095, + [2138] = 1088, + [2139] = 1099, + [2140] = 2023, [2141] = 2141, [2142] = 2142, [2143] = 2143, - [2144] = 2144, - [2145] = 2110, - [2146] = 393, - [2147] = 2116, - [2148] = 2119, - [2149] = 1062, - [2150] = 2133, - [2151] = 2141, + [2144] = 397, + [2145] = 398, + [2146] = 2129, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 394, + [2151] = 2151, [2152] = 2152, - [2153] = 2120, - [2154] = 2142, - [2155] = 389, - [2156] = 2156, - [2157] = 1065, + [2153] = 2153, + [2154] = 2154, + [2155] = 1072, + [2156] = 2133, + [2157] = 2157, [2158] = 2158, - [2159] = 2159, - [2160] = 2160, + [2159] = 1069, + [2160] = 2151, [2161] = 2161, [2162] = 2162, - [2163] = 2163, - [2164] = 2164, + [2163] = 2157, + [2164] = 2154, [2165] = 2165, - [2166] = 2166, + [2166] = 2158, [2167] = 2167, [2168] = 2168, [2169] = 2169, [2170] = 2170, [2171] = 2171, - [2172] = 2005, - [2173] = 2173, + [2172] = 2153, + [2173] = 2161, [2174] = 2174, - [2175] = 2175, - [2176] = 1066, + [2175] = 396, + [2176] = 2149, [2177] = 2177, [2178] = 2178, [2179] = 2179, @@ -6170,107 +6179,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2181] = 2181, [2182] = 2182, [2183] = 2183, - [2184] = 2181, + [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 2017, + [2187] = 2187, [2188] = 2188, [2189] = 2189, [2190] = 2190, - [2191] = 406, + [2191] = 2191, [2192] = 2192, - [2193] = 2005, - [2194] = 2181, - [2195] = 2174, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, [2196] = 2196, - [2197] = 2197, + [2197] = 1079, [2198] = 2198, - [2199] = 2181, + [2199] = 2023, [2200] = 2200, - [2201] = 2182, + [2201] = 2201, [2202] = 2202, [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, + [2206] = 2196, + [2207] = 411, + [2208] = 2196, + [2209] = 2200, [2210] = 2210, - [2211] = 2205, - [2212] = 2207, - [2213] = 2181, + [2211] = 2211, + [2212] = 2203, + [2213] = 2213, [2214] = 2214, - [2215] = 1087, - [2216] = 1095, + [2215] = 2202, + [2216] = 2216, [2217] = 2217, [2218] = 2218, - [2219] = 2218, - [2220] = 1093, + [2219] = 2219, + [2220] = 2220, [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2224, + [2222] = 2196, + [2223] = 2196, + [2224] = 2033, [2225] = 2225, - [2226] = 2226, + [2226] = 2023, [2227] = 2227, [2228] = 2228, - [2229] = 2224, + [2229] = 2229, [2230] = 2230, - [2231] = 2231, - [2232] = 2232, + [2231] = 2177, + [2232] = 1107, [2233] = 2233, - [2234] = 2005, - [2235] = 2231, + [2234] = 1091, + [2235] = 2235, [2236] = 2236, - [2237] = 1084, - [2238] = 2017, - [2239] = 2225, - [2240] = 1105, - [2241] = 2236, - [2242] = 2242, + [2237] = 1109, + [2238] = 2238, + [2239] = 1092, + [2240] = 2240, + [2241] = 2033, + [2242] = 2236, [2243] = 2243, - [2244] = 2230, - [2245] = 2243, + [2244] = 2244, + [2245] = 2245, [2246] = 2246, - [2247] = 2226, - [2248] = 2017, + [2247] = 2247, + [2248] = 2235, [2249] = 2249, - [2250] = 2228, - [2251] = 2223, - [2252] = 2217, - [2253] = 1089, - [2254] = 1097, - [2255] = 1099, + [2250] = 2246, + [2251] = 1103, + [2252] = 2252, + [2253] = 2244, + [2254] = 2254, + [2255] = 1084, [2256] = 2256, [2257] = 2257, - [2258] = 2232, - [2259] = 2246, - [2260] = 2230, - [2261] = 2257, - [2262] = 2226, - [2263] = 2249, - [2264] = 2256, + [2258] = 1089, + [2259] = 2259, + [2260] = 2236, + [2261] = 2254, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, [2265] = 2265, - [2266] = 2266, - [2267] = 2267, - [2268] = 2268, - [2269] = 2269, + [2266] = 2257, + [2267] = 2233, + [2268] = 2023, + [2269] = 2245, [2270] = 2270, - [2271] = 2271, - [2272] = 2272, - [2273] = 2271, - [2274] = 2274, - [2275] = 2275, - [2276] = 2268, - [2277] = 2266, + [2271] = 2259, + [2272] = 2249, + [2273] = 2256, + [2274] = 2259, + [2275] = 2033, + [2276] = 2238, + [2277] = 2270, [2278] = 2278, [2279] = 2279, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 2283, - [2284] = 2278, + [2280] = 2252, + [2281] = 2240, + [2282] = 2278, + [2283] = 1110, + [2284] = 2284, [2285] = 2285, [2286] = 2286, [2287] = 2287, @@ -6278,339 +6287,339 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2289] = 2289, [2290] = 2290, [2291] = 2291, - [2292] = 2289, + [2292] = 2292, [2293] = 2293, - [2294] = 2274, - [2295] = 2272, + [2294] = 2294, + [2295] = 2295, [2296] = 2296, - [2297] = 2297, - [2298] = 2265, + [2297] = 2285, + [2298] = 2298, [2299] = 2299, - [2300] = 2299, - [2301] = 2270, + [2300] = 2300, + [2301] = 2301, [2302] = 2302, - [2303] = 2281, + [2303] = 2303, [2304] = 2304, - [2305] = 2305, + [2305] = 2286, [2306] = 2306, - [2307] = 2290, - [2308] = 2282, - [2309] = 2309, + [2307] = 2307, + [2308] = 2308, + [2309] = 2293, [2310] = 2310, - [2311] = 2296, - [2312] = 2297, - [2313] = 2310, - [2314] = 2288, - [2315] = 2279, - [2316] = 2280, - [2317] = 2293, - [2318] = 2017, + [2311] = 2033, + [2312] = 2295, + [2313] = 2313, + [2314] = 2290, + [2315] = 2291, + [2316] = 2288, + [2317] = 2317, + [2318] = 2318, [2319] = 2319, - [2320] = 2320, - [2321] = 2321, - [2322] = 2322, + [2320] = 2318, + [2321] = 2313, + [2322] = 2307, [2323] = 2323, - [2324] = 2324, + [2324] = 2300, [2325] = 2323, [2326] = 2326, [2327] = 2327, - [2328] = 2326, - [2329] = 2329, - [2330] = 2324, - [2331] = 2331, - [2332] = 2332, + [2328] = 2306, + [2329] = 2308, + [2330] = 2330, + [2331] = 2298, + [2332] = 2319, [2333] = 2333, - [2334] = 2327, - [2335] = 2335, - [2336] = 2336, - [2337] = 2337, + [2334] = 2330, + [2335] = 2294, + [2336] = 2333, + [2337] = 2289, [2338] = 2338, [2339] = 2339, - [2340] = 2326, + [2340] = 2340, [2341] = 2341, [2342] = 2342, - [2343] = 2343, - [2344] = 2331, + [2343] = 2100, + [2344] = 2344, [2345] = 2345, [2346] = 2346, - [2347] = 2319, + [2347] = 2347, [2348] = 2348, [2349] = 2349, - [2350] = 2350, - [2351] = 2349, - [2352] = 2329, + [2350] = 2348, + [2351] = 2351, + [2352] = 2352, [2353] = 2353, [2354] = 2354, [2355] = 2355, - [2356] = 2073, - [2357] = 2357, - [2358] = 2342, - [2359] = 2359, - [2360] = 2360, - [2361] = 2348, - [2362] = 2350, - [2363] = 2322, - [2364] = 2320, - [2365] = 2365, - [2366] = 2338, - [2367] = 2333, - [2368] = 2339, - [2369] = 2359, - [2370] = 2355, - [2371] = 2354, + [2356] = 2356, + [2357] = 2356, + [2358] = 2358, + [2359] = 2358, + [2360] = 2347, + [2361] = 2361, + [2362] = 2338, + [2363] = 2363, + [2364] = 2344, + [2365] = 2342, + [2366] = 2361, + [2367] = 2367, + [2368] = 2368, + [2369] = 2369, + [2370] = 2363, + [2371] = 2371, [2372] = 2372, - [2373] = 2360, - [2374] = 2357, - [2375] = 2372, + [2373] = 2373, + [2374] = 2374, + [2375] = 2371, [2376] = 2376, - [2377] = 2377, - [2378] = 2378, + [2377] = 2358, + [2378] = 2352, [2379] = 2379, - [2380] = 168, - [2381] = 170, - [2382] = 171, - [2383] = 172, - [2384] = 2384, - [2385] = 2093, - [2386] = 1221, + [2380] = 2353, + [2381] = 2369, + [2382] = 2382, + [2383] = 2383, + [2384] = 2372, + [2385] = 2382, + [2386] = 2386, [2387] = 2387, - [2388] = 2388, - [2389] = 1299, - [2390] = 2390, + [2388] = 2347, + [2389] = 2389, + [2390] = 2345, [2391] = 2391, - [2392] = 2392, - [2393] = 2097, - [2394] = 2394, - [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, - [2399] = 2399, + [2392] = 2383, + [2393] = 2346, + [2394] = 2379, + [2395] = 2341, + [2396] = 2354, + [2397] = 2386, + [2398] = 2347, + [2399] = 2355, [2400] = 2400, - [2401] = 2401, - [2402] = 2402, + [2401] = 2347, + [2402] = 1335, [2403] = 2403, - [2404] = 2404, - [2405] = 2405, + [2404] = 1392, + [2405] = 1303, [2406] = 2406, - [2407] = 1232, - [2408] = 2408, - [2409] = 2398, + [2407] = 2407, + [2408] = 2112, + [2409] = 1301, [2410] = 2410, [2411] = 2411, [2412] = 2412, - [2413] = 2377, - [2414] = 2408, - [2415] = 1329, - [2416] = 1234, - [2417] = 2392, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 2416, + [2417] = 2417, [2418] = 2418, [2419] = 2419, - [2420] = 2420, + [2420] = 2406, [2421] = 2421, [2422] = 2422, [2423] = 2423, [2424] = 2424, [2425] = 2425, [2426] = 2426, - [2427] = 2399, - [2428] = 2390, - [2429] = 1298, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, [2430] = 2430, - [2431] = 2401, - [2432] = 2397, - [2433] = 2402, - [2434] = 2403, + [2431] = 2431, + [2432] = 2432, + [2433] = 2410, + [2434] = 2423, [2435] = 2435, - [2436] = 2401, - [2437] = 2402, - [2438] = 2378, + [2436] = 2430, + [2437] = 2411, + [2438] = 2438, [2439] = 2439, - [2440] = 2400, - [2441] = 2410, - [2442] = 2411, - [2443] = 2404, - [2444] = 2425, - [2445] = 2426, - [2446] = 2446, - [2447] = 2075, - [2448] = 2439, - [2449] = 2418, + [2440] = 2440, + [2441] = 2406, + [2442] = 2442, + [2443] = 2428, + [2444] = 2421, + [2445] = 2411, + [2446] = 2440, + [2447] = 2447, + [2448] = 2422, + [2449] = 2103, [2450] = 2450, - [2451] = 2378, - [2452] = 2419, - [2453] = 2396, - [2454] = 2454, + [2451] = 2451, + [2452] = 2452, + [2453] = 2451, + [2454] = 2426, [2455] = 2412, - [2456] = 2394, - [2457] = 2457, - [2458] = 2395, - [2459] = 2391, - [2460] = 2435, - [2461] = 2439, - [2462] = 2420, - [2463] = 2421, - [2464] = 2401, - [2465] = 2465, - [2466] = 2422, + [2456] = 1333, + [2457] = 2414, + [2458] = 2458, + [2459] = 2452, + [2460] = 2442, + [2461] = 2461, + [2462] = 2462, + [2463] = 2429, + [2464] = 169, + [2465] = 160, + [2466] = 2094, [2467] = 2467, - [2468] = 2423, - [2469] = 2465, - [2470] = 2405, + [2468] = 161, + [2469] = 2406, + [2470] = 2411, [2471] = 2471, - [2472] = 2457, - [2473] = 2406, - [2474] = 2450, - [2475] = 2471, - [2476] = 1297, - [2477] = 2402, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, + [2472] = 2422, + [2473] = 2473, + [2474] = 2415, + [2475] = 180, + [2476] = 2417, + [2477] = 2439, + [2478] = 2431, + [2479] = 2418, + [2480] = 2447, [2481] = 2481, [2482] = 2482, - [2483] = 2483, - [2484] = 2484, - [2485] = 2485, + [2483] = 2467, + [2484] = 2438, + [2485] = 2406, [2486] = 2486, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2491, - [2492] = 2492, - [2493] = 1229, - [2494] = 2482, + [2487] = 2419, + [2488] = 2473, + [2489] = 2458, + [2490] = 2482, + [2491] = 2416, + [2492] = 2403, + [2493] = 2406, + [2494] = 1294, [2495] = 2495, - [2496] = 2496, - [2497] = 2102, - [2498] = 2498, - [2499] = 2107, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, + [2496] = 2424, + [2497] = 2426, + [2498] = 2482, + [2499] = 2462, + [2500] = 2422, + [2501] = 1336, + [2502] = 2427, [2503] = 2503, - [2504] = 2504, - [2505] = 2491, - [2506] = 2506, - [2507] = 2498, - [2508] = 2500, - [2509] = 2502, + [2504] = 2495, + [2505] = 2432, + [2506] = 2486, + [2507] = 2413, + [2508] = 2508, + [2509] = 1112, [2510] = 2510, [2511] = 2511, - [2512] = 2489, + [2512] = 2512, [2513] = 2513, - [2514] = 2504, + [2514] = 2514, [2515] = 2515, - [2516] = 2511, - [2517] = 2480, + [2516] = 2516, + [2517] = 2517, [2518] = 2518, [2519] = 2519, [2520] = 2520, - [2521] = 1104, - [2522] = 2489, + [2521] = 2521, + [2522] = 2522, [2523] = 2523, [2524] = 2524, [2525] = 2525, - [2526] = 2500, - [2527] = 1096, + [2526] = 2526, + [2527] = 2527, [2528] = 2528, [2529] = 2529, [2530] = 2530, [2531] = 2531, - [2532] = 2530, + [2532] = 2532, [2533] = 2533, - [2534] = 1335, + [2534] = 2511, [2535] = 2535, - [2536] = 2536, - [2537] = 2482, - [2538] = 2538, + [2536] = 2526, + [2537] = 2530, + [2538] = 2532, [2539] = 2539, - [2540] = 2540, + [2540] = 2528, [2541] = 2541, - [2542] = 2542, + [2542] = 2532, [2543] = 2543, - [2544] = 2481, - [2545] = 2533, - [2546] = 2484, - [2547] = 2502, - [2548] = 2548, + [2544] = 2544, + [2545] = 2519, + [2546] = 2511, + [2547] = 1065, + [2548] = 2523, [2549] = 2549, - [2550] = 2503, + [2550] = 2550, [2551] = 2551, [2552] = 2552, - [2553] = 2541, + [2553] = 1105, [2554] = 2554, - [2555] = 2511, - [2556] = 2498, - [2557] = 2500, - [2558] = 2485, + [2555] = 2555, + [2556] = 2508, + [2557] = 2510, + [2558] = 2558, [2559] = 2559, - [2560] = 2523, + [2560] = 2539, [2561] = 2561, - [2562] = 1098, + [2562] = 2562, [2563] = 2563, - [2564] = 2498, - [2565] = 1058, - [2566] = 2525, - [2567] = 1094, + [2564] = 2128, + [2565] = 2565, + [2566] = 2526, + [2567] = 2525, [2568] = 2568, - [2569] = 2501, - [2570] = 1141, - [2571] = 2484, - [2572] = 2491, + [2569] = 2569, + [2570] = 2570, + [2571] = 2512, + [2572] = 2544, [2573] = 2573, - [2574] = 2568, - [2575] = 2510, + [2574] = 2574, + [2575] = 1431, [2576] = 2576, [2577] = 2577, - [2578] = 2539, + [2578] = 2516, [2579] = 2579, - [2580] = 2519, - [2581] = 2479, - [2582] = 1279, - [2583] = 2482, - [2584] = 2584, - [2585] = 2559, - [2586] = 2573, - [2587] = 2587, - [2588] = 2588, + [2580] = 2530, + [2581] = 2528, + [2582] = 2521, + [2583] = 2583, + [2584] = 1210, + [2585] = 1106, + [2586] = 2517, + [2587] = 1111, + [2588] = 2544, [2589] = 2589, - [2590] = 2112, - [2591] = 2591, + [2590] = 2514, + [2591] = 2539, [2592] = 2592, - [2593] = 2593, + [2593] = 2520, [2594] = 2594, - [2595] = 2595, + [2595] = 2558, [2596] = 2596, - [2597] = 2597, - [2598] = 2598, + [2597] = 2526, + [2598] = 1280, [2599] = 2599, - [2600] = 2600, - [2601] = 2601, - [2602] = 2602, - [2603] = 2603, - [2604] = 2604, - [2605] = 2605, - [2606] = 159, + [2600] = 2583, + [2601] = 1376, + [2602] = 2569, + [2603] = 2549, + [2604] = 2524, + [2605] = 2125, + [2606] = 2570, [2607] = 2607, - [2608] = 2608, - [2609] = 2609, - [2610] = 2610, - [2611] = 2608, + [2608] = 2589, + [2609] = 2565, + [2610] = 2532, + [2611] = 2611, [2612] = 2612, [2613] = 2613, - [2614] = 2609, - [2615] = 2588, - [2616] = 2591, + [2614] = 2614, + [2615] = 2511, + [2616] = 2616, [2617] = 2617, [2618] = 2618, - [2619] = 2605, + [2619] = 2619, [2620] = 2620, - [2621] = 2602, + [2621] = 2621, [2622] = 2622, [2623] = 2623, - [2624] = 2622, + [2624] = 2624, [2625] = 2625, [2626] = 2626, [2627] = 2627, @@ -6619,263 +6628,263 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2630] = 2630, [2631] = 2631, [2632] = 2632, - [2633] = 2628, - [2634] = 2634, + [2633] = 2633, + [2634] = 2617, [2635] = 2635, [2636] = 2636, [2637] = 2637, [2638] = 2638, [2639] = 2639, [2640] = 2640, - [2641] = 2597, - [2642] = 2613, - [2643] = 2595, - [2644] = 2629, + [2641] = 2639, + [2642] = 2642, + [2643] = 2619, + [2644] = 2618, [2645] = 2645, - [2646] = 2646, + [2646] = 2619, [2647] = 2647, [2648] = 2648, [2649] = 2649, - [2650] = 2650, + [2650] = 2642, [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2639, + [2652] = 2618, + [2653] = 2619, + [2654] = 2654, [2655] = 2655, [2656] = 2656, - [2657] = 2657, - [2658] = 2649, - [2659] = 2659, - [2660] = 2613, - [2661] = 2618, - [2662] = 2605, - [2663] = 2646, - [2664] = 2622, - [2665] = 2628, + [2657] = 2623, + [2658] = 2628, + [2659] = 2629, + [2660] = 2660, + [2661] = 2631, + [2662] = 2632, + [2663] = 2633, + [2664] = 2617, + [2665] = 2624, [2666] = 2666, - [2667] = 2640, + [2667] = 2667, [2668] = 2668, [2669] = 2669, - [2670] = 2646, - [2671] = 2649, - [2672] = 2650, - [2673] = 2651, - [2674] = 2617, - [2675] = 2657, - [2676] = 2659, - [2677] = 2666, - [2678] = 2668, - [2679] = 2679, + [2670] = 2670, + [2671] = 2671, + [2672] = 2672, + [2673] = 2642, + [2674] = 2674, + [2675] = 2631, + [2676] = 2628, + [2677] = 2616, + [2678] = 2633, + [2679] = 2617, [2680] = 2680, [2681] = 2681, - [2682] = 2601, + [2682] = 2682, [2683] = 2683, - [2684] = 2679, - [2685] = 2685, - [2686] = 2599, - [2687] = 2625, - [2688] = 2626, - [2689] = 2689, - [2690] = 2690, - [2691] = 2690, - [2692] = 2692, - [2693] = 2693, + [2684] = 2684, + [2685] = 2637, + [2686] = 2686, + [2687] = 2687, + [2688] = 2631, + [2689] = 2617, + [2690] = 2165, + [2691] = 2633, + [2692] = 2617, + [2693] = 2654, [2694] = 2694, [2695] = 2695, - [2696] = 2600, - [2697] = 2607, - [2698] = 2608, - [2699] = 2609, + [2696] = 2623, + [2697] = 2697, + [2698] = 2698, + [2699] = 2625, [2700] = 2700, - [2701] = 2680, - [2702] = 2702, - [2703] = 2631, - [2704] = 2632, - [2705] = 2705, - [2706] = 2651, - [2707] = 2613, - [2708] = 2618, - [2709] = 2605, - [2710] = 2622, - [2711] = 2646, - [2712] = 2649, - [2713] = 2650, - [2714] = 2651, - [2715] = 2657, - [2716] = 2659, - [2717] = 2666, - [2718] = 2680, - [2719] = 2681, - [2720] = 2599, - [2721] = 2626, - [2722] = 2681, - [2723] = 2690, - [2724] = 2601, + [2701] = 2669, + [2702] = 2624, + [2703] = 2625, + [2704] = 2647, + [2705] = 2633, + [2706] = 2706, + [2707] = 2707, + [2708] = 2626, + [2709] = 2709, + [2710] = 2710, + [2711] = 2651, + [2712] = 2712, + [2713] = 2713, + [2714] = 2628, + [2715] = 2636, + [2716] = 2627, + [2717] = 2670, + [2718] = 2640, + [2719] = 2719, + [2720] = 2628, + [2721] = 2629, + [2722] = 2722, + [2723] = 2621, + [2724] = 2628, [2725] = 2725, - [2726] = 2600, - [2727] = 2122, - [2728] = 2124, - [2729] = 2605, - [2730] = 2622, - [2731] = 2731, - [2732] = 2649, - [2733] = 2659, - [2734] = 2666, - [2735] = 2657, - [2736] = 2680, - [2737] = 2681, - [2738] = 2599, - [2739] = 2626, - [2740] = 2599, - [2741] = 2741, - [2742] = 2605, - [2743] = 2659, - [2744] = 2599, - [2745] = 2626, - [2746] = 2631, - [2747] = 2695, - [2748] = 2632, - [2749] = 2625, - [2750] = 2750, - [2751] = 2626, - [2752] = 2650, - [2753] = 2125, - [2754] = 2126, - [2755] = 2599, - [2756] = 2626, + [2726] = 2726, + [2727] = 2727, + [2728] = 2642, + [2729] = 2631, + [2730] = 2632, + [2731] = 2694, + [2732] = 2680, + [2733] = 2733, + [2734] = 2734, + [2735] = 2726, + [2736] = 2672, + [2737] = 2719, + [2738] = 175, + [2739] = 2726, + [2740] = 2667, + [2741] = 2668, + [2742] = 2742, + [2743] = 2698, + [2744] = 2744, + [2745] = 2745, + [2746] = 176, + [2747] = 2747, + [2748] = 2748, + [2749] = 2749, + [2750] = 2632, + [2751] = 2751, + [2752] = 2171, + [2753] = 2633, + [2754] = 2645, + [2755] = 2755, + [2756] = 2756, [2757] = 2757, - [2758] = 2589, + [2758] = 2686, [2759] = 2759, - [2760] = 2659, - [2761] = 2759, - [2762] = 2666, - [2763] = 2636, - [2764] = 2668, - [2765] = 2694, - [2766] = 2680, + [2760] = 2760, + [2761] = 2713, + [2762] = 2629, + [2763] = 2630, + [2764] = 2700, + [2765] = 2669, + [2766] = 2666, [2767] = 2767, - [2768] = 2741, + [2768] = 2639, [2769] = 2769, - [2770] = 2113, - [2771] = 2114, - [2772] = 2115, - [2773] = 2636, - [2774] = 2117, + [2770] = 2617, + [2771] = 2627, + [2772] = 2642, + [2773] = 2773, + [2774] = 2774, [2775] = 2775, - [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2598, - [2780] = 2681, - [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 2645, - [2785] = 2600, - [2786] = 2786, + [2776] = 2707, + [2777] = 2632, + [2778] = 2637, + [2779] = 2680, + [2780] = 2749, + [2781] = 2618, + [2782] = 2767, + [2783] = 2152, + [2784] = 2618, + [2785] = 2162, + [2786] = 2623, [2787] = 2787, - [2788] = 2757, - [2789] = 2783, - [2790] = 2790, - [2791] = 2652, - [2792] = 2792, - [2793] = 2592, - [2794] = 2790, + [2788] = 2788, + [2789] = 2683, + [2790] = 2130, + [2791] = 2648, + [2792] = 2695, + [2793] = 2670, + [2794] = 2712, [2795] = 2795, [2796] = 2796, - [2797] = 2797, - [2798] = 2679, - [2799] = 2690, - [2800] = 2612, - [2801] = 2801, - [2802] = 2778, - [2803] = 2776, - [2804] = 2786, - [2805] = 2787, - [2806] = 2693, - [2807] = 2593, - [2808] = 2587, - [2809] = 2796, - [2810] = 2603, - [2811] = 2797, - [2812] = 2640, - [2813] = 2640, - [2814] = 2618, - [2815] = 158, - [2816] = 2636, - [2817] = 2817, - [2818] = 2607, - [2819] = 2769, - [2820] = 2638, - [2821] = 2821, - [2822] = 2783, - [2823] = 2790, - [2824] = 2636, - [2825] = 2769, - [2826] = 2826, - [2827] = 2827, - [2828] = 2700, - [2829] = 2826, - [2830] = 2627, - [2831] = 2777, - [2832] = 2594, - [2833] = 2144, - [2834] = 2769, - [2835] = 2702, - [2836] = 2827, - [2837] = 2693, - [2838] = 2610, + [2797] = 2637, + [2798] = 2684, + [2799] = 2799, + [2800] = 2800, + [2801] = 2683, + [2802] = 2802, + [2803] = 2683, + [2804] = 2709, + [2805] = 2619, + [2806] = 2647, + [2807] = 2638, + [2808] = 2142, + [2809] = 2654, + [2810] = 2636, + [2811] = 2148, + [2812] = 2132, + [2813] = 2813, + [2814] = 2814, + [2815] = 2815, + [2816] = 2167, + [2817] = 2647, + [2818] = 2621, + [2819] = 2645, + [2820] = 2636, + [2821] = 2795, + [2822] = 2630, + [2823] = 2815, + [2824] = 2655, + [2825] = 2825, + [2826] = 2727, + [2827] = 2168, + [2828] = 2671, + [2829] = 2647, + [2830] = 2169, + [2831] = 2760, + [2832] = 2622, + [2833] = 2620, + [2834] = 2834, + [2835] = 2645, + [2836] = 2136, + [2837] = 2706, + [2838] = 2814, [2839] = 2839, - [2840] = 2620, - [2841] = 2152, - [2842] = 2156, - [2843] = 2625, - [2844] = 2596, - [2845] = 2782, - [2846] = 2640, - [2847] = 2692, - [2848] = 2848, - [2849] = 2849, - [2850] = 2850, - [2851] = 2851, - [2852] = 2852, - [2853] = 2853, - [2854] = 2854, - [2855] = 2855, - [2856] = 2856, - [2857] = 2857, - [2858] = 2858, - [2859] = 2167, - [2860] = 2168, - [2861] = 2861, - [2862] = 2862, - [2863] = 2863, - [2864] = 2864, - [2865] = 2865, - [2866] = 2866, - [2867] = 2867, - [2868] = 2868, - [2869] = 2171, - [2870] = 2870, + [2840] = 2825, + [2841] = 2841, + [2842] = 2683, + [2843] = 2774, + [2844] = 2710, + [2845] = 2845, + [2846] = 2775, + [2847] = 2623, + [2848] = 2695, + [2849] = 2697, + [2850] = 2799, + [2851] = 2800, + [2852] = 2624, + [2853] = 2787, + [2854] = 2722, + [2855] = 2625, + [2856] = 2799, + [2857] = 2845, + [2858] = 2788, + [2859] = 2744, + [2860] = 2860, + [2861] = 2682, + [2862] = 2744, + [2863] = 2682, + [2864] = 2800, + [2865] = 2700, + [2866] = 2633, + [2867] = 2629, + [2868] = 2686, + [2869] = 2627, + [2870] = 2841, [2871] = 2871, - [2872] = 2872, - [2873] = 2873, - [2874] = 2874, - [2875] = 2197, - [2876] = 2876, - [2877] = 2175, + [2872] = 2686, + [2873] = 2630, + [2874] = 2639, + [2875] = 2875, + [2876] = 2642, + [2877] = 2747, [2878] = 2878, - [2879] = 2177, + [2879] = 2879, [2880] = 2880, - [2881] = 2198, + [2881] = 2881, [2882] = 2882, - [2883] = 2883, + [2883] = 2221, [2884] = 2884, - [2885] = 2179, - [2886] = 2886, - [2887] = 2862, + [2885] = 2885, + [2886] = 2878, + [2887] = 2887, [2888] = 2888, - [2889] = 2204, + [2889] = 2889, [2890] = 2890, [2891] = 2891, [2892] = 2892, @@ -6887,17 +6896,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2898] = 2898, [2899] = 2899, [2900] = 2900, - [2901] = 2858, + [2901] = 2901, [2902] = 2902, [2903] = 2903, [2904] = 2904, - [2905] = 2876, + [2905] = 2905, [2906] = 2906, - [2907] = 2907, + [2907] = 2891, [2908] = 2908, [2909] = 2909, [2910] = 2910, - [2911] = 2872, + [2911] = 2911, [2912] = 2912, [2913] = 2913, [2914] = 2914, @@ -6906,625 +6915,625 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2917] = 2917, [2918] = 2918, [2919] = 2919, - [2920] = 2909, + [2920] = 2920, [2921] = 2921, [2922] = 2922, - [2923] = 2891, + [2923] = 2923, [2924] = 2924, - [2925] = 2892, + [2925] = 2925, [2926] = 2926, - [2927] = 2927, + [2927] = 2187, [2928] = 2928, - [2929] = 2870, - [2930] = 2930, + [2929] = 2929, + [2930] = 2188, [2931] = 2931, - [2932] = 2857, - [2933] = 2899, + [2932] = 2932, + [2933] = 2190, [2934] = 2934, - [2935] = 2935, + [2935] = 2192, [2936] = 2936, - [2937] = 2910, - [2938] = 2938, - [2939] = 2939, - [2940] = 2162, - [2941] = 2941, - [2942] = 2942, - [2943] = 2208, - [2944] = 2186, - [2945] = 2945, + [2937] = 2937, + [2938] = 2193, + [2939] = 2195, + [2940] = 2940, + [2941] = 2879, + [2942] = 2921, + [2943] = 2943, + [2944] = 2944, + [2945] = 2887, [2946] = 2946, [2947] = 2947, - [2948] = 2948, - [2949] = 2949, + [2948] = 2911, + [2949] = 2943, [2950] = 2950, [2951] = 2951, - [2952] = 2200, + [2952] = 2952, [2953] = 2953, [2954] = 2954, - [2955] = 2165, + [2955] = 2955, [2956] = 2956, [2957] = 2957, [2958] = 2958, - [2959] = 2959, - [2960] = 2960, + [2959] = 2888, + [2960] = 2908, [2961] = 2961, - [2962] = 2962, - [2963] = 2963, - [2964] = 2882, + [2962] = 2918, + [2963] = 2947, + [2964] = 2964, [2965] = 2965, - [2966] = 2966, - [2967] = 2967, - [2968] = 2858, - [2969] = 2969, + [2966] = 2912, + [2967] = 2913, + [2968] = 2968, + [2969] = 2914, [2970] = 2970, - [2971] = 2185, - [2972] = 406, - [2973] = 2973, - [2974] = 2202, + [2971] = 2971, + [2972] = 2198, + [2973] = 2205, + [2974] = 2915, [2975] = 2975, - [2976] = 2209, + [2976] = 2976, [2977] = 2977, - [2978] = 2900, - [2979] = 2979, - [2980] = 2980, + [2978] = 2916, + [2979] = 2944, + [2980] = 2968, [2981] = 2981, - [2982] = 2849, + [2982] = 2982, [2983] = 2983, - [2984] = 2183, - [2985] = 2941, - [2986] = 2850, - [2987] = 2203, - [2988] = 2988, - [2989] = 2934, - [2990] = 2918, - [2991] = 2991, - [2992] = 2210, - [2993] = 2853, - [2994] = 2903, + [2984] = 2984, + [2985] = 2917, + [2986] = 2946, + [2987] = 2216, + [2988] = 2981, + [2989] = 2989, + [2990] = 2990, + [2991] = 2201, + [2992] = 2992, + [2993] = 2993, + [2994] = 2884, [2995] = 2995, - [2996] = 2996, - [2997] = 2997, - [2998] = 2890, - [2999] = 2163, - [3000] = 2173, + [2996] = 2189, + [2997] = 2191, + [2998] = 2998, + [2999] = 2999, + [3000] = 2194, [3001] = 3001, - [3002] = 3001, - [3003] = 2919, - [3004] = 3004, - [3005] = 3005, - [3006] = 2942, - [3007] = 2855, + [3002] = 3002, + [3003] = 2890, + [3004] = 2964, + [3005] = 2919, + [3006] = 3006, + [3007] = 2204, [3008] = 3008, - [3009] = 2958, - [3010] = 2856, - [3011] = 2970, - [3012] = 2921, - [3013] = 3013, - [3014] = 3013, - [3015] = 3015, - [3016] = 2912, - [3017] = 2164, + [3009] = 2920, + [3010] = 2210, + [3011] = 3011, + [3012] = 3012, + [3013] = 2211, + [3014] = 2213, + [3015] = 2217, + [3016] = 2218, + [3017] = 2219, [3018] = 3018, - [3019] = 2930, + [3019] = 2220, [3020] = 3020, - [3021] = 2915, - [3022] = 2904, + [3021] = 3021, + [3022] = 3022, [3023] = 3023, - [3024] = 2867, + [3024] = 2897, [3025] = 3025, [3026] = 3026, - [3027] = 2953, - [3028] = 2959, - [3029] = 2951, - [3030] = 2861, - [3031] = 2967, - [3032] = 2166, - [3033] = 2866, - [3034] = 2957, - [3035] = 2886, + [3027] = 3027, + [3028] = 3028, + [3029] = 2922, + [3030] = 2882, + [3031] = 2923, + [3032] = 2884, + [3033] = 3033, + [3034] = 2885, + [3035] = 2878, [3036] = 3036, - [3037] = 2983, + [3037] = 3037, [3038] = 3038, - [3039] = 3039, - [3040] = 2180, - [3041] = 2872, + [3039] = 183, + [3040] = 2912, + [3041] = 2913, [3042] = 3042, - [3043] = 3043, - [3044] = 3015, - [3045] = 3045, + [3043] = 2919, + [3044] = 2898, + [3045] = 2920, [3046] = 3046, [3047] = 3047, - [3048] = 3048, - [3049] = 2886, - [3050] = 2895, - [3051] = 3051, - [3052] = 3046, - [3053] = 2178, - [3054] = 3054, - [3055] = 2864, - [3056] = 2159, - [3057] = 2913, - [3058] = 2188, - [3059] = 2895, - [3060] = 2190, - [3061] = 2891, - [3062] = 2858, - [3063] = 2192, - [3064] = 3064, + [3048] = 2923, + [3049] = 2992, + [3050] = 2965, + [3051] = 2951, + [3052] = 2955, + [3053] = 3053, + [3054] = 2225, + [3055] = 3055, + [3056] = 3056, + [3057] = 2924, + [3058] = 2227, + [3059] = 2925, + [3060] = 2885, + [3061] = 2899, + [3062] = 2951, + [3063] = 3063, + [3064] = 3011, [3065] = 3065, - [3066] = 2196, + [3066] = 3018, [3067] = 3067, - [3068] = 2884, - [3069] = 3069, - [3070] = 2892, - [3071] = 2954, - [3072] = 3043, - [3073] = 2975, - [3074] = 2874, - [3075] = 3075, - [3076] = 3076, - [3077] = 3077, + [3068] = 2229, + [3069] = 3022, + [3070] = 3070, + [3071] = 3071, + [3072] = 2230, + [3073] = 3073, + [3074] = 3074, + [3075] = 2912, + [3076] = 2913, + [3077] = 2993, [3078] = 3078, - [3079] = 2160, - [3080] = 2852, - [3081] = 2161, - [3082] = 2935, - [3083] = 2872, - [3084] = 2945, - [3085] = 3085, - [3086] = 3086, + [3079] = 2951, + [3080] = 3080, + [3081] = 411, + [3082] = 3082, + [3083] = 2928, + [3084] = 3011, + [3085] = 2929, + [3086] = 2900, [3087] = 3087, - [3088] = 2946, - [3089] = 2951, - [3090] = 3090, - [3091] = 2912, + [3088] = 3088, + [3089] = 2931, + [3090] = 2179, + [3091] = 3091, [3092] = 3092, - [3093] = 2965, - [3094] = 3036, - [3095] = 3095, - [3096] = 2863, - [3097] = 2873, - [3098] = 2997, - [3099] = 2924, - [3100] = 2891, + [3093] = 3022, + [3094] = 3094, + [3095] = 2983, + [3096] = 2182, + [3097] = 3097, + [3098] = 3098, + [3099] = 3099, + [3100] = 3100, [3101] = 3101, [3102] = 3102, [3103] = 3103, - [3104] = 2892, - [3105] = 2979, - [3106] = 2169, - [3107] = 2170, - [3108] = 3108, - [3109] = 3076, - [3110] = 165, + [3104] = 3038, + [3105] = 3038, + [3106] = 3106, + [3107] = 3107, + [3108] = 2902, + [3109] = 2934, + [3110] = 3055, [3111] = 3111, - [3112] = 2995, - [3113] = 3067, - [3114] = 3067, + [3112] = 3112, + [3113] = 2955, + [3114] = 3114, [3115] = 3115, [3116] = 3116, - [3117] = 3018, - [3118] = 3077, - [3119] = 2867, + [3117] = 2880, + [3118] = 3118, + [3119] = 3106, [3120] = 3120, - [3121] = 3121, - [3122] = 3122, + [3121] = 2936, + [3122] = 2937, [3123] = 3123, - [3124] = 2865, + [3124] = 3107, [3125] = 3125, - [3126] = 3101, - [3127] = 3127, - [3128] = 3043, + [3126] = 3011, + [3127] = 2178, + [3128] = 2180, [3129] = 3129, - [3130] = 2871, - [3131] = 3131, - [3132] = 3132, - [3133] = 2874, - [3134] = 3048, - [3135] = 2928, - [3136] = 2980, - [3137] = 3076, - [3138] = 3077, - [3139] = 2858, - [3140] = 2882, + [3130] = 2181, + [3131] = 2183, + [3132] = 2184, + [3133] = 2185, + [3134] = 3134, + [3135] = 3135, + [3136] = 2904, + [3137] = 3137, + [3138] = 3138, + [3139] = 3139, + [3140] = 3140, [3141] = 3141, [3142] = 3142, - [3143] = 3020, - [3144] = 2938, - [3145] = 3108, - [3146] = 2880, - [3147] = 2890, - [3148] = 3148, - [3149] = 2961, - [3150] = 3150, - [3151] = 2927, + [3143] = 3143, + [3144] = 3144, + [3145] = 2901, + [3146] = 3146, + [3147] = 3147, + [3148] = 2893, + [3149] = 2903, + [3150] = 3018, + [3151] = 3125, [3152] = 3152, - [3153] = 3148, - [3154] = 2895, - [3155] = 3125, - [3156] = 3103, - [3157] = 3005, - [3158] = 3158, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3162, - [3163] = 3163, - [3164] = 3164, + [3153] = 3153, + [3154] = 3022, + [3155] = 3155, + [3156] = 3011, + [3157] = 2894, + [3158] = 2975, + [3159] = 2940, + [3160] = 2976, + [3161] = 2971, + [3162] = 3001, + [3163] = 3143, + [3164] = 3152, [3165] = 3165, - [3166] = 3166, - [3167] = 3167, - [3168] = 3168, - [3169] = 3169, - [3170] = 3170, - [3171] = 3171, - [3172] = 3172, + [3166] = 2882, + [3167] = 2889, + [3168] = 2953, + [3169] = 3080, + [3170] = 2905, + [3171] = 3112, + [3172] = 3165, [3173] = 3173, - [3174] = 3174, + [3174] = 3094, [3175] = 3175, [3176] = 3176, [3177] = 3177, - [3178] = 3178, - [3179] = 3162, - [3180] = 3180, - [3181] = 3180, - [3182] = 3182, - [3183] = 3183, - [3184] = 3184, - [3185] = 3185, - [3186] = 3186, - [3187] = 3187, - [3188] = 3188, - [3189] = 3185, + [3178] = 3155, + [3179] = 2957, + [3180] = 2984, + [3181] = 2958, + [3182] = 3176, + [3183] = 2214, + [3184] = 3147, + [3185] = 3023, + [3186] = 3111, + [3187] = 2895, + [3188] = 2922, + [3189] = 3189, [3190] = 3190, [3191] = 3191, [3192] = 3192, [3193] = 3193, [3194] = 3194, [3195] = 3195, - [3196] = 3170, + [3196] = 3196, [3197] = 3197, [3198] = 3198, [3199] = 3199, [3200] = 3200, [3201] = 3201, - [3202] = 3183, + [3202] = 1554, [3203] = 3203, - [3204] = 3203, + [3204] = 3204, [3205] = 3205, - [3206] = 3162, - [3207] = 3171, + [3206] = 3206, + [3207] = 3207, [3208] = 3208, [3209] = 3209, [3210] = 3210, [3211] = 3211, - [3212] = 3185, - [3213] = 3173, + [3212] = 3212, + [3213] = 3212, [3214] = 3214, [3215] = 3215, [3216] = 3216, [3217] = 3217, [3218] = 3218, - [3219] = 3214, - [3220] = 3173, + [3219] = 3219, + [3220] = 3220, [3221] = 3221, [3222] = 3222, - [3223] = 3166, - [3224] = 3224, + [3223] = 3223, + [3224] = 3203, [3225] = 3225, - [3226] = 3170, - [3227] = 3173, - [3228] = 3175, - [3229] = 3176, + [3226] = 3226, + [3227] = 3192, + [3228] = 3221, + [3229] = 3229, [3230] = 3230, [3231] = 3231, - [3232] = 3194, - [3233] = 3187, + [3232] = 3232, + [3233] = 3233, [3234] = 3234, - [3235] = 3173, - [3236] = 3236, - [3237] = 3174, - [3238] = 3238, + [3235] = 3235, + [3236] = 3204, + [3237] = 3237, + [3238] = 3201, [3239] = 3239, - [3240] = 3240, - [3241] = 1457, - [3242] = 3215, + [3240] = 3223, + [3241] = 3241, + [3242] = 3242, [3243] = 3243, - [3244] = 3244, - [3245] = 3245, - [3246] = 3214, - [3247] = 3247, - [3248] = 3166, + [3244] = 3241, + [3245] = 3230, + [3246] = 3246, + [3247] = 3206, + [3248] = 3248, [3249] = 3249, - [3250] = 3173, - [3251] = 3175, - [3252] = 3176, + [3250] = 3193, + [3251] = 3201, + [3252] = 3199, [3253] = 3253, - [3254] = 3254, - [3255] = 3255, - [3256] = 3256, + [3254] = 3201, + [3255] = 3203, + [3256] = 3204, [3257] = 3257, - [3258] = 3258, - [3259] = 3192, - [3260] = 3197, - [3261] = 3210, + [3258] = 3207, + [3259] = 3259, + [3260] = 3260, + [3261] = 3211, [3262] = 3262, - [3263] = 3214, - [3264] = 3211, - [3265] = 3173, - [3266] = 3175, - [3267] = 3176, + [3263] = 3209, + [3264] = 3264, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, [3268] = 3268, - [3269] = 3175, - [3270] = 3249, - [3271] = 3271, + [3269] = 3201, + [3270] = 3220, + [3271] = 3223, [3272] = 3272, [3273] = 3273, - [3274] = 1529, - [3275] = 3275, + [3274] = 3211, + [3275] = 3241, [3276] = 3276, - [3277] = 3214, - [3278] = 3173, - [3279] = 3175, - [3280] = 3176, - [3281] = 3281, - [3282] = 3282, - [3283] = 3272, - [3284] = 3172, - [3285] = 3285, - [3286] = 3214, - [3287] = 3173, - [3288] = 3175, - [3289] = 3176, - [3290] = 3214, - [3291] = 3175, - [3292] = 3176, - [3293] = 3214, - [3294] = 3175, - [3295] = 3176, - [3296] = 3214, - [3297] = 3175, - [3298] = 3176, - [3299] = 3214, - [3300] = 3175, - [3301] = 3176, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3305, - [3306] = 3306, - [3307] = 3307, - [3308] = 3308, - [3309] = 3163, - [3310] = 3310, - [3311] = 3273, - [3312] = 3312, - [3313] = 3176, - [3314] = 3184, - [3315] = 3315, - [3316] = 3316, - [3317] = 1127, - [3318] = 1132, - [3319] = 3201, - [3320] = 3276, - [3321] = 3321, - [3322] = 3322, - [3323] = 3323, - [3324] = 3158, + [3277] = 3193, + [3278] = 3201, + [3279] = 3243, + [3280] = 3203, + [3281] = 3204, + [3282] = 3189, + [3283] = 3211, + [3284] = 3284, + [3285] = 3226, + [3286] = 3191, + [3287] = 3241, + [3288] = 3205, + [3289] = 3289, + [3290] = 3201, + [3291] = 3203, + [3292] = 3204, + [3293] = 3195, + [3294] = 3294, + [3295] = 3295, + [3296] = 3296, + [3297] = 3294, + [3298] = 3298, + [3299] = 3299, + [3300] = 3241, + [3301] = 3259, + [3302] = 3201, + [3303] = 3203, + [3304] = 3204, + [3305] = 3284, + [3306] = 3197, + [3307] = 3223, + [3308] = 3241, + [3309] = 3201, + [3310] = 3203, + [3311] = 3204, + [3312] = 3241, + [3313] = 3203, + [3314] = 3204, + [3315] = 3241, + [3316] = 3203, + [3317] = 3204, + [3318] = 3241, + [3319] = 3203, + [3320] = 3204, + [3321] = 3241, + [3322] = 3203, + [3323] = 3204, + [3324] = 3199, [3325] = 3325, - [3326] = 3218, - [3327] = 3177, - [3328] = 3328, - [3329] = 1470, - [3330] = 1471, - [3331] = 3306, - [3332] = 3312, - [3333] = 3333, - [3334] = 3182, - [3335] = 3166, - [3336] = 3336, - [3337] = 3190, - [3338] = 3338, - [3339] = 3243, - [3340] = 3165, - [3341] = 3341, - [3342] = 3188, - [3343] = 3244, - [3344] = 3195, - [3345] = 3208, - [3346] = 3322, - [3347] = 3245, - [3348] = 3348, + [3326] = 3326, + [3327] = 3222, + [3328] = 3208, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, + [3332] = 3200, + [3333] = 3231, + [3334] = 3334, + [3335] = 3265, + [3336] = 1262, + [3337] = 1264, + [3338] = 3234, + [3339] = 3339, + [3340] = 3232, + [3341] = 3235, + [3342] = 3243, + [3343] = 3343, + [3344] = 3233, + [3345] = 3345, + [3346] = 3330, + [3347] = 3347, + [3348] = 3241, [3349] = 3349, - [3350] = 3215, + [3350] = 3265, [3351] = 3351, - [3352] = 3247, + [3352] = 3331, [3353] = 3353, - [3354] = 3304, - [3355] = 3205, + [3354] = 3276, + [3355] = 3355, [3356] = 3356, - [3357] = 3231, - [3358] = 3285, - [3359] = 3302, + [3357] = 3357, + [3358] = 1436, + [3359] = 1437, [3360] = 3360, - [3361] = 3239, - [3362] = 3362, - [3363] = 3351, - [3364] = 3353, - [3365] = 3362, + [3361] = 3091, + [3362] = 3103, + [3363] = 3363, + [3364] = 3364, + [3365] = 3357, [3366] = 3366, - [3367] = 3366, - [3368] = 1479, - [3369] = 3305, - [3370] = 3370, - [3371] = 3281, - [3372] = 3218, - [3373] = 3198, + [3367] = 3367, + [3368] = 3368, + [3369] = 3369, + [3370] = 3193, + [3371] = 3334, + [3372] = 3372, + [3373] = 3373, [3374] = 3214, - [3375] = 3210, - [3376] = 3316, - [3377] = 3310, - [3378] = 3316, - [3379] = 3379, - [3380] = 3328, - [3381] = 3381, - [3382] = 3159, + [3375] = 3375, + [3376] = 3376, + [3377] = 3198, + [3378] = 3199, + [3379] = 3200, + [3380] = 3380, + [3381] = 3356, + [3382] = 3382, [3383] = 3383, - [3384] = 3348, - [3385] = 3215, - [3386] = 3356, - [3387] = 3169, - [3388] = 3111, - [3389] = 3123, - [3390] = 3173, - [3391] = 3391, + [3384] = 3384, + [3385] = 3242, + [3386] = 3386, + [3387] = 3387, + [3388] = 3295, + [3389] = 3363, + [3390] = 3382, + [3391] = 3387, [3392] = 3392, - [3393] = 3312, - [3394] = 1127, - [3395] = 1132, - [3396] = 3201, - [3397] = 3397, - [3398] = 3166, + [3393] = 3393, + [3394] = 3394, + [3395] = 3395, + [3396] = 3396, + [3397] = 3201, + [3398] = 3220, [3399] = 3399, - [3400] = 3328, - [3401] = 3193, - [3402] = 3240, - [3403] = 3403, - [3404] = 3312, - [3405] = 3201, - [3406] = 3397, - [3407] = 3312, - [3408] = 3201, - [3409] = 3169, - [3410] = 3349, - [3411] = 3338, - [3412] = 3234, - [3413] = 3383, - [3414] = 3170, - [3415] = 3316, - [3416] = 3159, - [3417] = 3171, - [3418] = 3238, - [3419] = 3403, - [3420] = 3420, - [3421] = 3360, - [3422] = 3328, - [3423] = 3162, - [3424] = 3424, - [3425] = 3336, - [3426] = 3216, - [3427] = 3282, - [3428] = 3253, - [3429] = 3221, - [3430] = 3194, - [3431] = 3200, - [3432] = 3173, - [3433] = 3230, - [3434] = 3158, - [3435] = 3173, - [3436] = 3341, - [3437] = 3175, - [3438] = 3234, - [3439] = 3238, - [3440] = 3208, - [3441] = 3238, - [3442] = 3158, - [3443] = 3159, - [3444] = 3254, - [3445] = 3215, - [3446] = 3176, - [3447] = 3315, - [3448] = 3230, - [3449] = 3449, - [3450] = 3163, - [3451] = 3255, - [3452] = 3281, - [3453] = 3218, - [3454] = 3225, - [3455] = 3194, - [3456] = 3214, - [3457] = 3457, - [3458] = 3316, - [3459] = 3459, - [3460] = 3163, - [3461] = 3461, + [3400] = 3355, + [3401] = 3360, + [3402] = 3402, + [3403] = 3203, + [3404] = 3204, + [3405] = 1538, + [3406] = 3353, + [3407] = 3357, + [3408] = 3408, + [3409] = 3386, + [3410] = 3410, + [3411] = 3205, + [3412] = 3198, + [3413] = 3413, + [3414] = 3208, + [3415] = 3201, + [3416] = 3231, + [3417] = 3417, + [3418] = 1262, + [3419] = 1264, + [3420] = 3339, + [3421] = 3421, + [3422] = 3276, + [3423] = 3423, + [3424] = 3193, + [3425] = 3425, + [3426] = 3347, + [3427] = 3364, + [3428] = 3428, + [3429] = 3429, + [3430] = 3430, + [3431] = 3231, + [3432] = 3259, + [3433] = 3339, + [3434] = 3428, + [3435] = 3190, + [3436] = 3366, + [3437] = 3218, + [3438] = 3438, + [3439] = 3231, + [3440] = 3339, + [3441] = 3211, + [3442] = 3246, + [3443] = 3262, + [3444] = 3444, + [3445] = 3421, + [3446] = 3265, + [3447] = 3223, + [3448] = 3448, + [3449] = 3260, + [3450] = 3253, + [3451] = 3451, + [3452] = 3201, + [3453] = 3372, + [3454] = 3276, + [3455] = 3205, + [3456] = 3219, + [3457] = 3444, + [3458] = 3239, + [3459] = 3212, + [3460] = 3229, + [3461] = 3339, [3462] = 3462, - [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 3466, - [3467] = 3467, + [3463] = 3257, + [3464] = 3429, + [3465] = 3451, + [3466] = 3289, + [3467] = 1508, [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 3466, - [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] = 153, - [3488] = 3488, - [3489] = 3489, - [3490] = 3472, - [3491] = 3491, - [3492] = 3492, - [3493] = 3493, - [3494] = 3494, - [3495] = 3495, - [3496] = 3482, + [3469] = 3235, + [3470] = 3243, + [3471] = 3423, + [3472] = 3221, + [3473] = 3241, + [3474] = 3410, + [3475] = 3262, + [3476] = 3260, + [3477] = 3423, + [3478] = 3260, + [3479] = 3423, + [3480] = 3367, + [3481] = 3353, + [3482] = 3265, + [3483] = 3438, + [3484] = 3413, + [3485] = 3329, + [3486] = 3267, + [3487] = 3208, + [3488] = 3353, + [3489] = 3393, + [3490] = 3430, + [3491] = 3343, + [3492] = 3268, + [3493] = 3221, + [3494] = 3368, + [3495] = 3448, + [3496] = 3462, [3497] = 3497, [3498] = 3498, [3499] = 3499, - [3500] = 3484, - [3501] = 3491, + [3500] = 3500, + [3501] = 3501, [3502] = 3502, [3503] = 3503, [3504] = 3504, [3505] = 3505, [3506] = 3506, - [3507] = 3474, - [3508] = 3481, + [3507] = 3507, + [3508] = 3508, [3509] = 3509, [3510] = 3510, [3511] = 3511, [3512] = 3512, - [3513] = 3468, - [3514] = 3467, + [3513] = 3513, + [3514] = 3509, [3515] = 3515, - [3516] = 3489, + [3516] = 3516, [3517] = 3517, [3518] = 3518, [3519] = 3519, [3520] = 3520, [3521] = 3521, [3522] = 3522, - [3523] = 3464, + [3523] = 3523, [3524] = 3524, [3525] = 3525, [3526] = 3526, - [3527] = 3506, - [3528] = 3472, - [3529] = 3522, - [3530] = 3472, - [3531] = 3531, - [3532] = 3532, - [3533] = 3533, - [3534] = 3467, + [3527] = 3527, + [3528] = 3498, + [3529] = 3529, + [3530] = 3530, + [3531] = 3522, + [3532] = 3516, + [3533] = 3523, + [3534] = 3534, [3535] = 3535, [3536] = 3536, [3537] = 3537, - [3538] = 3538, + [3538] = 3502, [3539] = 3539, [3540] = 3540, [3541] = 3541, @@ -7532,250 +7541,286 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3543] = 3543, [3544] = 3544, [3545] = 3545, - [3546] = 3474, - [3547] = 3472, + [3546] = 3546, + [3547] = 3547, [3548] = 3548, - [3549] = 3498, - [3550] = 3480, - [3551] = 3551, + [3549] = 3549, + [3550] = 3550, + [3551] = 3501, [3552] = 3552, [3553] = 3553, - [3554] = 3554, - [3555] = 157, - [3556] = 3556, - [3557] = 3557, - [3558] = 3558, + [3554] = 3507, + [3555] = 3510, + [3556] = 3518, + [3557] = 3547, + [3558] = 3519, [3559] = 3559, [3560] = 3560, [3561] = 3561, - [3562] = 3470, - [3563] = 3563, - [3564] = 3564, - [3565] = 3481, - [3566] = 3566, + [3562] = 3562, + [3563] = 3525, + [3564] = 3512, + [3565] = 3565, + [3566] = 3552, [3567] = 3567, [3568] = 3568, - [3569] = 3560, + [3569] = 3569, [3570] = 3570, [3571] = 3571, - [3572] = 3568, + [3572] = 3572, [3573] = 3573, - [3574] = 3499, + [3574] = 3574, [3575] = 3575, - [3576] = 3478, - [3577] = 3491, - [3578] = 3511, - [3579] = 3502, - [3580] = 3580, + [3576] = 3511, + [3577] = 3577, + [3578] = 3572, + [3579] = 3579, + [3580] = 3571, [3581] = 3581, [3582] = 3582, - [3583] = 3531, - [3584] = 3532, - [3585] = 3585, + [3583] = 3583, + [3584] = 3584, + [3585] = 3500, [3586] = 3586, - [3587] = 3512, - [3588] = 3588, + [3587] = 3568, + [3588] = 3570, [3589] = 3589, [3590] = 3590, [3591] = 3591, - [3592] = 3590, - [3593] = 3476, - [3594] = 3505, - [3595] = 3557, + [3592] = 3539, + [3593] = 3593, + [3594] = 3594, + [3595] = 3595, [3596] = 3596, - [3597] = 3542, - [3598] = 3475, - [3599] = 3558, + [3597] = 3594, + [3598] = 3598, + [3599] = 3599, [3600] = 3600, - [3601] = 3581, - [3602] = 3591, - [3603] = 3502, - [3604] = 3492, + [3601] = 3527, + [3602] = 3547, + [3603] = 3603, + [3604] = 3511, [3605] = 3605, - [3606] = 3606, + [3606] = 3510, [3607] = 3607, - [3608] = 3541, + [3608] = 3596, [3609] = 3609, - [3610] = 3466, - [3611] = 3611, - [3612] = 3556, - [3613] = 3560, - [3614] = 3537, - [3615] = 3478, - [3616] = 3479, - [3617] = 3480, + [3610] = 3513, + [3611] = 3517, + [3612] = 3498, + [3613] = 3613, + [3614] = 3614, + [3615] = 3615, + [3616] = 3616, + [3617] = 3589, [3618] = 3618, - [3619] = 3482, - [3620] = 3620, - [3621] = 3582, + [3619] = 3619, + [3620] = 3512, + [3621] = 3621, [3622] = 3622, - [3623] = 3623, - [3624] = 3474, + [3623] = 3530, + [3624] = 3614, [3625] = 3625, - [3626] = 3568, - [3627] = 3627, - [3628] = 3589, + [3626] = 3536, + [3627] = 3590, + [3628] = 3628, [3629] = 3629, - [3630] = 3630, - [3631] = 3505, + [3630] = 3579, + [3631] = 3504, [3632] = 3632, [3633] = 3633, - [3634] = 3475, - [3635] = 3635, - [3636] = 3533, - [3637] = 3541, - [3638] = 3512, - [3639] = 3552, + [3634] = 3575, + [3635] = 3507, + [3636] = 3636, + [3637] = 3637, + [3638] = 3638, + [3639] = 3632, [3640] = 3640, - [3641] = 3589, - [3642] = 3479, - [3643] = 3482, - [3644] = 3553, - [3645] = 3495, + [3641] = 3583, + [3642] = 3642, + [3643] = 3643, + [3644] = 3500, + [3645] = 3547, [3646] = 3646, [3647] = 3647, - [3648] = 3589, - [3649] = 3475, - [3650] = 3606, - [3651] = 3541, - [3652] = 3589, - [3653] = 3653, - [3654] = 3482, - [3655] = 3589, - [3656] = 3475, - [3657] = 3541, - [3658] = 3627, - [3659] = 3482, - [3660] = 3475, - [3661] = 3541, - [3662] = 3482, - [3663] = 3475, - [3664] = 3475, - [3665] = 3475, - [3666] = 3475, - [3667] = 3475, - [3668] = 3479, - [3669] = 3669, - [3670] = 3509, - [3671] = 3623, - [3672] = 3503, - [3673] = 3519, - [3674] = 3674, + [3648] = 3648, + [3649] = 3573, + [3650] = 3512, + [3651] = 3513, + [3652] = 3509, + [3653] = 3646, + [3654] = 3517, + [3655] = 3498, + [3656] = 3656, + [3657] = 3657, + [3658] = 3582, + [3659] = 3573, + [3660] = 3536, + [3661] = 3661, + [3662] = 3662, + [3663] = 3625, + [3664] = 3540, + [3665] = 3544, + [3666] = 3629, + [3667] = 3629, + [3668] = 3668, + [3669] = 3549, + [3670] = 3633, + [3671] = 3671, + [3672] = 3668, + [3673] = 3643, + [3674] = 3633, [3675] = 3675, - [3676] = 3551, - [3677] = 3465, - [3678] = 3559, - [3679] = 3679, - [3680] = 3463, - [3681] = 3633, + [3676] = 3500, + [3677] = 3677, + [3678] = 3513, + [3679] = 3517, + [3680] = 3668, + [3681] = 3681, [3682] = 3682, - [3683] = 3683, - [3684] = 3538, - [3685] = 3618, - [3686] = 3554, - [3687] = 3539, - [3688] = 3688, - [3689] = 3675, - [3690] = 3690, - [3691] = 3515, - [3692] = 3476, - [3693] = 3580, - [3694] = 3504, - [3695] = 3695, - [3696] = 3505, - [3697] = 3697, - [3698] = 3698, - [3699] = 3699, - [3700] = 3461, - [3701] = 3625, - [3702] = 3477, - [3703] = 3586, + [3683] = 3546, + [3684] = 3625, + [3685] = 3633, + [3686] = 3643, + [3687] = 3687, + [3688] = 3547, + [3689] = 3517, + [3690] = 3625, + [3691] = 3633, + [3692] = 3643, + [3693] = 3625, + [3694] = 3517, + [3695] = 3633, + [3696] = 3643, + [3697] = 3517, + [3698] = 3633, + [3699] = 3633, + [3700] = 3633, + [3701] = 3633, + [3702] = 3633, + [3703] = 174, [3704] = 3704, - [3705] = 3510, - [3706] = 3706, - [3707] = 3707, - [3708] = 3548, - [3709] = 3588, - [3710] = 3469, - [3711] = 3679, - [3712] = 3466, - [3713] = 3566, - [3714] = 3573, - [3715] = 3517, - [3716] = 3716, - [3717] = 3632, - [3718] = 3571, - [3719] = 3542, - [3720] = 3570, - [3721] = 3704, - [3722] = 3475, - [3723] = 3723, - [3724] = 3521, - [3725] = 3478, - [3726] = 3605, - [3727] = 3635, - [3728] = 3629, - [3729] = 3729, - [3730] = 3485, - [3731] = 3669, - [3732] = 3474, - [3733] = 3503, - [3734] = 3519, - [3735] = 3679, - [3736] = 3463, - [3737] = 3491, + [3705] = 3600, + [3706] = 3562, + [3707] = 3574, + [3708] = 3708, + [3709] = 3535, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, + [3713] = 3603, + [3714] = 3621, + [3715] = 3715, + [3716] = 3542, + [3717] = 3586, + [3718] = 3715, + [3719] = 3497, + [3720] = 3657, + [3721] = 3721, + [3722] = 3722, + [3723] = 3499, + [3724] = 3724, + [3725] = 3710, + [3726] = 3598, + [3727] = 3511, + [3728] = 3728, + [3729] = 3628, + [3730] = 3730, + [3731] = 3511, + [3732] = 3629, + [3733] = 3733, + [3734] = 3733, + [3735] = 3569, + [3736] = 3643, + [3737] = 3625, [3738] = 3738, - [3739] = 3503, - [3740] = 3463, - [3741] = 3492, - [3742] = 3630, - [3743] = 3463, - [3744] = 3463, - [3745] = 3463, - [3746] = 3467, - [3747] = 3707, - [3748] = 3606, - [3749] = 3515, - [3750] = 3502, - [3751] = 3751, - [3752] = 3541, - [3753] = 3494, - [3754] = 3543, - [3755] = 3472, - [3756] = 3756, - [3757] = 3567, - [3758] = 3758, - [3759] = 3611, - [3760] = 3674, - [3761] = 3756, + [3739] = 3739, + [3740] = 3739, + [3741] = 3741, + [3742] = 3547, + [3743] = 3613, + [3744] = 3521, + [3745] = 3545, + [3746] = 3746, + [3747] = 3541, + [3748] = 3638, + [3749] = 3618, + [3750] = 3750, + [3751] = 3738, + [3752] = 3633, + [3753] = 3599, + [3754] = 3682, + [3755] = 3755, + [3756] = 3508, + [3757] = 3724, + [3758] = 3640, + [3759] = 3550, + [3760] = 3648, + [3761] = 3761, [3762] = 3762, - [3763] = 3474, - [3764] = 3682, - [3765] = 3620, - [3766] = 3766, - [3767] = 3766, - [3768] = 3768, - [3769] = 3690, - [3770] = 3611, - [3771] = 3524, - [3772] = 3545, - [3773] = 3698, - [3774] = 3774, - [3775] = 3568, - [3776] = 3606, - [3777] = 3699, - [3778] = 3480, - [3779] = 3779, - [3780] = 3780, - [3781] = 3781, - [3782] = 3782, - [3783] = 3783, - [3784] = 3784, + [3763] = 3763, + [3764] = 3656, + [3765] = 3577, + [3766] = 3632, + [3767] = 3562, + [3768] = 3574, + [3769] = 3603, + [3770] = 3621, + [3771] = 3579, + [3772] = 3583, + [3773] = 3562, + [3774] = 3621, + [3775] = 3522, + [3776] = 3668, + [3777] = 3621, + [3778] = 3621, + [3779] = 3621, + [3780] = 3643, + [3781] = 3559, + [3782] = 3520, + [3783] = 3546, + [3784] = 171, [3785] = 3785, - [3786] = 3786, + [3786] = 3712, + [3787] = 3511, + [3788] = 3637, + [3789] = 3789, + [3790] = 3507, + [3791] = 3537, + [3792] = 3675, + [3793] = 3755, + [3794] = 3794, + [3795] = 3721, + [3796] = 3561, + [3797] = 3797, + [3798] = 3593, + [3799] = 3799, + [3800] = 3646, + [3801] = 3565, + [3802] = 3628, + [3803] = 3560, + [3804] = 3797, + [3805] = 3805, + [3806] = 3806, + [3807] = 3728, + [3808] = 3505, + [3809] = 3622, + [3810] = 3619, + [3811] = 3805, + [3812] = 3583, + [3813] = 3522, + [3814] = 3509, + [3815] = 3799, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3822, }; -const TSCharacterRange sym_identifier_character_set_1[] = { +static const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -7864,7 +7909,7 @@ const TSCharacterRange sym_identifier_character_set_1[] = { {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -const TSCharacterRange sym_identifier_character_set_3[] = { +static const TSCharacterRange sym_identifier_character_set_3[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, @@ -10435,13 +10480,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 7, .external_lex_state = 2}, [44] = {.lex_state = 7, .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}, - [51] = {.lex_state = 7, .external_lex_state = 2}, - [52] = {.lex_state = 7, .external_lex_state = 2}, + [50] = {.lex_state = 7, .external_lex_state = 2}, + [51] = {.lex_state = 5, .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}, @@ -10467,18 +10512,18 @@ 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}, - [88] = {.lex_state = 4, .external_lex_state = 2}, - [89] = {.lex_state = 4, .external_lex_state = 2}, + [87] = {.lex_state = 6, .external_lex_state = 2}, + [88] = {.lex_state = 6, .external_lex_state = 2}, + [89] = {.lex_state = 6, .external_lex_state = 2}, [90] = {.lex_state = 6, .external_lex_state = 2}, [91] = {.lex_state = 6, .external_lex_state = 2}, [92] = {.lex_state = 6, .external_lex_state = 2}, @@ -10488,97 +10533,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, - [105] = {.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 = 6, .external_lex_state = 2}, [106] = {.lex_state = 6, .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}, - [110] = {.lex_state = 4, .external_lex_state = 2}, + [109] = {.lex_state = 6, .external_lex_state = 2}, + [110] = {.lex_state = 6, .external_lex_state = 2}, [111] = {.lex_state = 6, .external_lex_state = 2}, [112] = {.lex_state = 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}, - [122] = {.lex_state = 6, .external_lex_state = 2}, + [117] = {.lex_state = 4, .external_lex_state = 2}, + [118] = {.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 = 4, .external_lex_state = 2}, [123] = {.lex_state = 6, .external_lex_state = 2}, [124] = {.lex_state = 6, .external_lex_state = 2}, [125] = {.lex_state = 6, .external_lex_state = 2}, [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}, + [131] = {.lex_state = 4, .external_lex_state = 2}, + [132] = {.lex_state = 4, .external_lex_state = 2}, [133] = {.lex_state = 6, .external_lex_state = 2}, [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}, + [136] = {.lex_state = 13, .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 = 4, .external_lex_state = 2}, - [142] = {.lex_state = 13, .external_lex_state = 2}, + [140] = {.lex_state = 4, .external_lex_state = 2}, + [141] = {.lex_state = 13, .external_lex_state = 2}, + [142] = {.lex_state = 4, .external_lex_state = 2}, [143] = {.lex_state = 13, .external_lex_state = 2}, - [144] = {.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}, - [148] = {.lex_state = 13, .external_lex_state = 2}, - [149] = {.lex_state = 13, .external_lex_state = 2}, - [150] = {.lex_state = 13, .external_lex_state = 2}, - [151] = {.lex_state = 4, .external_lex_state = 2}, - [152] = {.lex_state = 4, .external_lex_state = 2}, - [153] = {.lex_state = 4, .external_lex_state = 2}, - [154] = {.lex_state = 13, .external_lex_state = 2}, - [155] = {.lex_state = 13, .external_lex_state = 2}, - [156] = {.lex_state = 13, .external_lex_state = 2}, - [157] = {.lex_state = 4, .external_lex_state = 2}, + [146] = {.lex_state = 13, .external_lex_state = 2}, + [147] = {.lex_state = 6, .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 = 13, .external_lex_state = 2}, + [152] = {.lex_state = 13, .external_lex_state = 2}, + [153] = {.lex_state = 13, .external_lex_state = 2}, + [154] = {.lex_state = 4, .external_lex_state = 2}, + [155] = {.lex_state = 4, .external_lex_state = 2}, + [156] = {.lex_state = 4, .external_lex_state = 2}, + [157] = {.lex_state = 13, .external_lex_state = 2}, [158] = {.lex_state = 4, .external_lex_state = 2}, [159] = {.lex_state = 4, .external_lex_state = 2}, - [160] = {.lex_state = 13, .external_lex_state = 2}, - [161] = {.lex_state = 13, .external_lex_state = 2}, + [160] = {.lex_state = 4, .external_lex_state = 2}, + [161] = {.lex_state = 4, .external_lex_state = 2}, [162] = {.lex_state = 13, .external_lex_state = 2}, - [163] = {.lex_state = 6, .external_lex_state = 2}, - [164] = {.lex_state = 4, .external_lex_state = 2}, - [165] = {.lex_state = 4, .external_lex_state = 2}, + [163] = {.lex_state = 4, .external_lex_state = 2}, + [164] = {.lex_state = 13, .external_lex_state = 2}, + [165] = {.lex_state = 13, .external_lex_state = 2}, [166] = {.lex_state = 13, .external_lex_state = 2}, [167] = {.lex_state = 13, .external_lex_state = 2}, - [168] = {.lex_state = 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}, + [170] = {.lex_state = 6, .external_lex_state = 2}, [171] = {.lex_state = 4, .external_lex_state = 2}, - [172] = {.lex_state = 4, .external_lex_state = 2}, + [172] = {.lex_state = 13, .external_lex_state = 2}, [173] = {.lex_state = 13, .external_lex_state = 2}, - [174] = {.lex_state = 13, .external_lex_state = 2}, + [174] = {.lex_state = 4, .external_lex_state = 2}, [175] = {.lex_state = 4, .external_lex_state = 2}, [176] = {.lex_state = 4, .external_lex_state = 2}, - [177] = {.lex_state = 4, .external_lex_state = 2}, + [177] = {.lex_state = 13, .external_lex_state = 2}, [178] = {.lex_state = 13, .external_lex_state = 2}, [179] = {.lex_state = 13, .external_lex_state = 2}, [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, - [182] = {.lex_state = 6, .external_lex_state = 2}, - [183] = {.lex_state = 13, .external_lex_state = 2}, + [181] = {.lex_state = 13, .external_lex_state = 2}, + [182] = {.lex_state = 13, .external_lex_state = 2}, + [183] = {.lex_state = 4, .external_lex_state = 2}, [184] = {.lex_state = 13, .external_lex_state = 2}, [185] = {.lex_state = 4, .external_lex_state = 2}, - [186] = {.lex_state = 13, .external_lex_state = 2}, - [187] = {.lex_state = 13, .external_lex_state = 2}, + [186] = {.lex_state = 4, .external_lex_state = 2}, + [187] = {.lex_state = 4, .external_lex_state = 2}, [188] = {.lex_state = 13, .external_lex_state = 2}, - [189] = {.lex_state = 4, .external_lex_state = 2}, + [189] = {.lex_state = 13, .external_lex_state = 2}, [190] = {.lex_state = 13, .external_lex_state = 2}, [191] = {.lex_state = 13, .external_lex_state = 2}, [192] = {.lex_state = 13, .external_lex_state = 2}, @@ -10586,76 +10631,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 13, .external_lex_state = 2}, [195] = {.lex_state = 13, .external_lex_state = 2}, [196] = {.lex_state = 13, .external_lex_state = 2}, - [197] = {.lex_state = 13, .external_lex_state = 2}, - [198] = {.lex_state = 13, .external_lex_state = 2}, + [197] = {.lex_state = 4, .external_lex_state = 2}, + [198] = {.lex_state = 6, .external_lex_state = 2}, [199] = {.lex_state = 13, .external_lex_state = 2}, [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 6, .external_lex_state = 2}, + [201] = {.lex_state = 13, .external_lex_state = 2}, [202] = {.lex_state = 6, .external_lex_state = 2}, [203] = {.lex_state = 6, .external_lex_state = 2}, - [204] = {.lex_state = 13, .external_lex_state = 2}, + [204] = {.lex_state = 6, .external_lex_state = 2}, [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 13, .external_lex_state = 2}, - [207] = {.lex_state = 13, .external_lex_state = 2}, + [206] = {.lex_state = 6, .external_lex_state = 2}, + [207] = {.lex_state = 6, .external_lex_state = 2}, [208] = {.lex_state = 6, .external_lex_state = 2}, [209] = {.lex_state = 13, .external_lex_state = 2}, [210] = {.lex_state = 6, .external_lex_state = 2}, - [211] = {.lex_state = 6, .external_lex_state = 2}, + [211] = {.lex_state = 13, .external_lex_state = 2}, [212] = {.lex_state = 6, .external_lex_state = 2}, - [213] = {.lex_state = 6, .external_lex_state = 2}, - [214] = {.lex_state = 6, .external_lex_state = 2}, + [213] = {.lex_state = 13, .external_lex_state = 2}, + [214] = {.lex_state = 13, .external_lex_state = 2}, [215] = {.lex_state = 15, .external_lex_state = 2}, [216] = {.lex_state = 13, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 15, .external_lex_state = 2}, + [217] = {.lex_state = 15, .external_lex_state = 2}, + [218] = {.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 = 15, .external_lex_state = 2}, - [222] = {.lex_state = 15, .external_lex_state = 2}, - [223] = {.lex_state = 15, .external_lex_state = 2}, - [224] = {.lex_state = 13, .external_lex_state = 2}, - [225] = {.lex_state = 15, .external_lex_state = 2}, + [221] = {.lex_state = 13, .external_lex_state = 2}, + [222] = {.lex_state = 13, .external_lex_state = 2}, + [223] = {.lex_state = 13, .external_lex_state = 2}, + [224] = {.lex_state = 15, .external_lex_state = 2}, + [225] = {.lex_state = 13, .external_lex_state = 2}, [226] = {.lex_state = 15, .external_lex_state = 2}, - [227] = {.lex_state = 15, .external_lex_state = 2}, - [228] = {.lex_state = 13, .external_lex_state = 2}, - [229] = {.lex_state = 13, .external_lex_state = 2}, + [227] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 15, .external_lex_state = 2}, + [229] = {.lex_state = 12, .external_lex_state = 2}, [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, - [232] = {.lex_state = 12, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 12, .external_lex_state = 2}, - [235] = {.lex_state = 13, .external_lex_state = 2}, - [236] = {.lex_state = 13, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, - [238] = {.lex_state = 12, .external_lex_state = 2}, - [239] = {.lex_state = 12, .external_lex_state = 2}, + [231] = {.lex_state = 12, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 15, .external_lex_state = 2}, + [234] = {.lex_state = 15, .external_lex_state = 2}, + [235] = {.lex_state = 12, .external_lex_state = 2}, + [236] = {.lex_state = 15, .external_lex_state = 2}, + [237] = {.lex_state = 12, .external_lex_state = 2}, + [238] = {.lex_state = 13, .external_lex_state = 2}, + [239] = {.lex_state = 13, .external_lex_state = 2}, [240] = {.lex_state = 13, .external_lex_state = 2}, - [241] = {.lex_state = 12, .external_lex_state = 2}, + [241] = {.lex_state = 13, .external_lex_state = 2}, [242] = {.lex_state = 12, .external_lex_state = 2}, - [243] = {.lex_state = 13, .external_lex_state = 2}, - [244] = {.lex_state = 13, .external_lex_state = 2}, + [243] = {.lex_state = 15, .external_lex_state = 2}, + [244] = {.lex_state = 15, .external_lex_state = 2}, [245] = {.lex_state = 15, .external_lex_state = 2}, - [246] = {.lex_state = 15, .external_lex_state = 2}, - [247] = {.lex_state = 13, .external_lex_state = 2}, - [248] = {.lex_state = 13, .external_lex_state = 2}, - [249] = {.lex_state = 13, .external_lex_state = 2}, - [250] = {.lex_state = 15, .external_lex_state = 2}, - [251] = {.lex_state = 15, .external_lex_state = 2}, - [252] = {.lex_state = 15, .external_lex_state = 2}, - [253] = {.lex_state = 12, .external_lex_state = 2}, - [254] = {.lex_state = 12, .external_lex_state = 2}, - [255] = {.lex_state = 12, .external_lex_state = 2}, - [256] = {.lex_state = 12, .external_lex_state = 2}, - [257] = {.lex_state = 12, .external_lex_state = 2}, + [246] = {.lex_state = 13, .external_lex_state = 2}, + [247] = {.lex_state = 15, .external_lex_state = 2}, + [248] = {.lex_state = 15, .external_lex_state = 2}, + [249] = {.lex_state = 15, .external_lex_state = 2}, + [250] = {.lex_state = 13, .external_lex_state = 2}, + [251] = {.lex_state = 12, .external_lex_state = 2}, + [252] = {.lex_state = 13, .external_lex_state = 2}, + [253] = {.lex_state = 13, .external_lex_state = 2}, + [254] = {.lex_state = 15, .external_lex_state = 2}, + [255] = {.lex_state = 15, .external_lex_state = 2}, + [256] = {.lex_state = 15, .external_lex_state = 2}, + [257] = {.lex_state = 13, .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}, @@ -10679,7 +10724,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 13, .external_lex_state = 2}, [288] = {.lex_state = 13, .external_lex_state = 2}, [289] = {.lex_state = 13, .external_lex_state = 2}, - [290] = {.lex_state = 13, .external_lex_state = 2}, + [290] = {.lex_state = 71, .external_lex_state = 2}, [291] = {.lex_state = 13, .external_lex_state = 2}, [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, @@ -10699,21 +10744,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [307] = {.lex_state = 13, .external_lex_state = 2}, [308] = {.lex_state = 13, .external_lex_state = 2}, [309] = {.lex_state = 13, .external_lex_state = 2}, - [310] = {.lex_state = 14, .external_lex_state = 2}, + [310] = {.lex_state = 13, .external_lex_state = 2}, [311] = {.lex_state = 13, .external_lex_state = 2}, [312] = {.lex_state = 13, .external_lex_state = 2}, [313] = {.lex_state = 13, .external_lex_state = 2}, [314] = {.lex_state = 13, .external_lex_state = 2}, [315] = {.lex_state = 13, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, - [317] = {.lex_state = 14, .external_lex_state = 2}, - [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 13, .external_lex_state = 2}, + [317] = {.lex_state = 13, .external_lex_state = 2}, + [318] = {.lex_state = 14, .external_lex_state = 2}, + [319] = {.lex_state = 12, .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}, [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 13, .external_lex_state = 2}, + [324] = {.lex_state = 14, .external_lex_state = 2}, [325] = {.lex_state = 13, .external_lex_state = 2}, [326] = {.lex_state = 13, .external_lex_state = 2}, [327] = {.lex_state = 13, .external_lex_state = 2}, @@ -10722,15 +10767,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [330] = {.lex_state = 13, .external_lex_state = 2}, [331] = {.lex_state = 13, .external_lex_state = 2}, [332] = {.lex_state = 13, .external_lex_state = 2}, - [333] = {.lex_state = 14, .external_lex_state = 2}, + [333] = {.lex_state = 13, .external_lex_state = 2}, [334] = {.lex_state = 13, .external_lex_state = 2}, [335] = {.lex_state = 13, .external_lex_state = 2}, [336] = {.lex_state = 13, .external_lex_state = 2}, [337] = {.lex_state = 13, .external_lex_state = 2}, - [338] = {.lex_state = 13, .external_lex_state = 2}, - [339] = {.lex_state = 71, .external_lex_state = 2}, + [338] = {.lex_state = 14, .external_lex_state = 2}, + [339] = {.lex_state = 13, .external_lex_state = 2}, [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 12, .external_lex_state = 2}, + [341] = {.lex_state = 13, .external_lex_state = 2}, [342] = {.lex_state = 13, .external_lex_state = 2}, [343] = {.lex_state = 13, .external_lex_state = 2}, [344] = {.lex_state = 13, .external_lex_state = 2}, @@ -10778,23 +10823,23 @@ 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}, [398] = {.lex_state = 71, .external_lex_state = 2}, [399] = {.lex_state = 71, .external_lex_state = 2}, - [400] = {.lex_state = 71, .external_lex_state = 2}, + [400] = {.lex_state = 12, .external_lex_state = 2}, [401] = {.lex_state = 71, .external_lex_state = 2}, [402] = {.lex_state = 71, .external_lex_state = 2}, [403] = {.lex_state = 71, .external_lex_state = 2}, [404] = {.lex_state = 71, .external_lex_state = 2}, - [405] = {.lex_state = 71, .external_lex_state = 2}, + [405] = {.lex_state = 12, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, [407] = {.lex_state = 71, .external_lex_state = 2}, [408] = {.lex_state = 71, .external_lex_state = 2}, @@ -10803,36 +10848,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [411] = {.lex_state = 71, .external_lex_state = 2}, [412] = {.lex_state = 71, .external_lex_state = 2}, [413] = {.lex_state = 71, .external_lex_state = 2}, - [414] = {.lex_state = 12, .external_lex_state = 2}, - [415] = {.lex_state = 12, .external_lex_state = 2}, + [414] = {.lex_state = 71, .external_lex_state = 2}, + [415] = {.lex_state = 71, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 71, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 2}, [418] = {.lex_state = 71, .external_lex_state = 2}, [419] = {.lex_state = 71, .external_lex_state = 2}, [420] = {.lex_state = 71, .external_lex_state = 2}, - [421] = {.lex_state = 12, .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}, + [424] = {.lex_state = 71, .external_lex_state = 2}, + [425] = {.lex_state = 71, .external_lex_state = 2}, + [426] = {.lex_state = 12, .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}, @@ -10845,30 +10890,30 @@ 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 = 5, .external_lex_state = 2}, - [458] = {.lex_state = 14, .external_lex_state = 2}, - [459] = {.lex_state = 14, .external_lex_state = 2}, - [460] = {.lex_state = 14, .external_lex_state = 2}, - [461] = {.lex_state = 5, .external_lex_state = 2}, + [456] = {.lex_state = 13, .external_lex_state = 2}, + [457] = {.lex_state = 13, .external_lex_state = 2}, + [458] = {.lex_state = 13, .external_lex_state = 2}, + [459] = {.lex_state = 13, .external_lex_state = 2}, + [460] = {.lex_state = 13, .external_lex_state = 2}, + [461] = {.lex_state = 14, .external_lex_state = 2}, [462] = {.lex_state = 14, .external_lex_state = 2}, - [463] = {.lex_state = 14, .external_lex_state = 2}, - [464] = {.lex_state = 5, .external_lex_state = 2}, - [465] = {.lex_state = 5, .external_lex_state = 2}, + [463] = {.lex_state = 5, .external_lex_state = 2}, + [464] = {.lex_state = 14, .external_lex_state = 2}, + [465] = {.lex_state = 14, .external_lex_state = 2}, [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 = 5, .external_lex_state = 2}, [469] = {.lex_state = 14, .external_lex_state = 2}, [470] = {.lex_state = 5, .external_lex_state = 2}, [471] = {.lex_state = 5, .external_lex_state = 2}, [472] = {.lex_state = 5, .external_lex_state = 2}, - [473] = {.lex_state = 5, .external_lex_state = 2}, + [473] = {.lex_state = 14, .external_lex_state = 2}, [474] = {.lex_state = 5, .external_lex_state = 2}, - [475] = {.lex_state = 5, .external_lex_state = 2}, - [476] = {.lex_state = 5, .external_lex_state = 2}, + [475] = {.lex_state = 14, .external_lex_state = 2}, + [476] = {.lex_state = 14, .external_lex_state = 2}, [477] = {.lex_state = 5, .external_lex_state = 2}, [478] = {.lex_state = 5, .external_lex_state = 2}, - [479] = {.lex_state = 14, .external_lex_state = 2}, + [479] = {.lex_state = 5, .external_lex_state = 2}, [480] = {.lex_state = 5, .external_lex_state = 2}, [481] = {.lex_state = 5, .external_lex_state = 2}, [482] = {.lex_state = 5, .external_lex_state = 2}, @@ -10881,17 +10926,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [489] = {.lex_state = 5, .external_lex_state = 2}, [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 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 = 5, .external_lex_state = 2}, + [497] = {.lex_state = 14, .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}, @@ -10920,7 +10965,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [528] = {.lex_state = 73, .external_lex_state = 2}, [529] = {.lex_state = 73, .external_lex_state = 2}, [530] = {.lex_state = 73, .external_lex_state = 2}, - [531] = {.lex_state = 73, .external_lex_state = 2}, + [531] = {.lex_state = 23}, [532] = {.lex_state = 73, .external_lex_state = 2}, [533] = {.lex_state = 73, .external_lex_state = 2}, [534] = {.lex_state = 73, .external_lex_state = 2}, @@ -10934,14 +10979,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 73, .external_lex_state = 2}, [543] = {.lex_state = 73, .external_lex_state = 2}, [544] = {.lex_state = 73, .external_lex_state = 2}, - [545] = {.lex_state = 73, .external_lex_state = 2}, + [545] = {.lex_state = 23}, [546] = {.lex_state = 73, .external_lex_state = 2}, [547] = {.lex_state = 73, .external_lex_state = 2}, [548] = {.lex_state = 73, .external_lex_state = 2}, [549] = {.lex_state = 73, .external_lex_state = 2}, - [550] = {.lex_state = 73, .external_lex_state = 2}, + [550] = {.lex_state = 23}, [551] = {.lex_state = 73, .external_lex_state = 2}, - [552] = {.lex_state = 14, .external_lex_state = 2}, + [552] = {.lex_state = 73, .external_lex_state = 2}, [553] = {.lex_state = 73, .external_lex_state = 2}, [554] = {.lex_state = 73, .external_lex_state = 2}, [555] = {.lex_state = 73, .external_lex_state = 2}, @@ -11000,7 +11045,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [608] = {.lex_state = 73, .external_lex_state = 2}, [609] = {.lex_state = 73, .external_lex_state = 2}, [610] = {.lex_state = 73, .external_lex_state = 2}, - [611] = {.lex_state = 73, .external_lex_state = 2}, + [611] = {.lex_state = 14, .external_lex_state = 2}, [612] = {.lex_state = 73, .external_lex_state = 2}, [613] = {.lex_state = 73, .external_lex_state = 2}, [614] = {.lex_state = 73, .external_lex_state = 2}, @@ -11009,7 +11054,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 73, .external_lex_state = 2}, [618] = {.lex_state = 73, .external_lex_state = 2}, [619] = {.lex_state = 73, .external_lex_state = 2}, - [620] = {.lex_state = 14, .external_lex_state = 2}, + [620] = {.lex_state = 73, .external_lex_state = 2}, [621] = {.lex_state = 73, .external_lex_state = 2}, [622] = {.lex_state = 73, .external_lex_state = 2}, [623] = {.lex_state = 73, .external_lex_state = 2}, @@ -11028,24 +11073,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [636] = {.lex_state = 73, .external_lex_state = 2}, [637] = {.lex_state = 73, .external_lex_state = 2}, [638] = {.lex_state = 73, .external_lex_state = 2}, - [639] = {.lex_state = 23}, + [639] = {.lex_state = 73, .external_lex_state = 2}, [640] = {.lex_state = 73, .external_lex_state = 2}, [641] = {.lex_state = 73, .external_lex_state = 2}, [642] = {.lex_state = 73, .external_lex_state = 2}, [643] = {.lex_state = 73, .external_lex_state = 2}, - [644] = {.lex_state = 73, .external_lex_state = 2}, - [645] = {.lex_state = 73, .external_lex_state = 2}, + [644] = {.lex_state = 14, .external_lex_state = 2}, + [645] = {.lex_state = 23}, [646] = {.lex_state = 73, .external_lex_state = 2}, [647] = {.lex_state = 73, .external_lex_state = 2}, [648] = {.lex_state = 73, .external_lex_state = 2}, [649] = {.lex_state = 73, .external_lex_state = 2}, - [650] = {.lex_state = 14, .external_lex_state = 2}, - [651] = {.lex_state = 73, .external_lex_state = 2}, + [650] = {.lex_state = 73, .external_lex_state = 2}, + [651] = {.lex_state = 23}, [652] = {.lex_state = 73, .external_lex_state = 2}, [653] = {.lex_state = 73, .external_lex_state = 2}, [654] = {.lex_state = 73, .external_lex_state = 2}, [655] = {.lex_state = 73, .external_lex_state = 2}, - [656] = {.lex_state = 23}, + [656] = {.lex_state = 73, .external_lex_state = 2}, [657] = {.lex_state = 73, .external_lex_state = 2}, [658] = {.lex_state = 73, .external_lex_state = 2}, [659] = {.lex_state = 73, .external_lex_state = 2}, @@ -11068,18 +11113,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 23}, + [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 = 23}, + [684] = {.lex_state = 14, .external_lex_state = 2}, + [685] = {.lex_state = 73, .external_lex_state = 2}, [686] = {.lex_state = 73, .external_lex_state = 2}, [687] = {.lex_state = 73, .external_lex_state = 2}, [688] = {.lex_state = 73, .external_lex_state = 2}, [689] = {.lex_state = 73, .external_lex_state = 2}, - [690] = {.lex_state = 14, .external_lex_state = 2}, + [690] = {.lex_state = 73, .external_lex_state = 2}, [691] = {.lex_state = 73, .external_lex_state = 2}, [692] = {.lex_state = 73, .external_lex_state = 2}, [693] = {.lex_state = 73, .external_lex_state = 2}, @@ -11087,7 +11132,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [695] = {.lex_state = 73, .external_lex_state = 2}, [696] = {.lex_state = 73, .external_lex_state = 2}, [697] = {.lex_state = 73, .external_lex_state = 2}, - [698] = {.lex_state = 14, .external_lex_state = 2}, + [698] = {.lex_state = 73, .external_lex_state = 2}, [699] = {.lex_state = 73, .external_lex_state = 2}, [700] = {.lex_state = 73, .external_lex_state = 2}, [701] = {.lex_state = 73, .external_lex_state = 2}, @@ -11137,8 +11182,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [745] = {.lex_state = 73, .external_lex_state = 2}, [746] = {.lex_state = 73, .external_lex_state = 2}, [747] = {.lex_state = 73, .external_lex_state = 2}, - [748] = {.lex_state = 23}, - [749] = {.lex_state = 14, .external_lex_state = 2}, + [748] = {.lex_state = 73, .external_lex_state = 2}, + [749] = {.lex_state = 73, .external_lex_state = 2}, [750] = {.lex_state = 73, .external_lex_state = 2}, [751] = {.lex_state = 73, .external_lex_state = 2}, [752] = {.lex_state = 73, .external_lex_state = 2}, @@ -11171,27 +11216,27 @@ 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 = 17}, - [793] = {.lex_state = 14, .external_lex_state = 2}, - [794] = {.lex_state = 14, .external_lex_state = 2}, - [795] = {.lex_state = 14, .external_lex_state = 2}, + [793] = {.lex_state = 17}, + [794] = {.lex_state = 17}, + [795] = {.lex_state = 17}, [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 14, .external_lex_state = 2}, - [798] = {.lex_state = 17}, + [797] = {.lex_state = 17}, + [798] = {.lex_state = 14, .external_lex_state = 2}, [799] = {.lex_state = 14, .external_lex_state = 2}, - [800] = {.lex_state = 14, .external_lex_state = 2}, + [800] = {.lex_state = 17}, [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 = 14, .external_lex_state = 2}, [805] = {.lex_state = 14, .external_lex_state = 2}, @@ -11202,8 +11247,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [810] = {.lex_state = 14, .external_lex_state = 2}, [811] = {.lex_state = 14, .external_lex_state = 2}, [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 12, .external_lex_state = 2}, - [814] = {.lex_state = 14, .external_lex_state = 2}, + [813] = {.lex_state = 14, .external_lex_state = 2}, + [814] = {.lex_state = 12, .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}, @@ -11238,11 +11283,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}, @@ -11440,68 +11485,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1048] = {.lex_state = 17}, [1049] = {.lex_state = 17}, [1050] = {.lex_state = 17}, - [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 13, .external_lex_state = 2}, - [1053] = {.lex_state = 13, .external_lex_state = 2}, - [1054] = {.lex_state = 15, .external_lex_state = 2}, - [1055] = {.lex_state = 15, .external_lex_state = 2}, - [1056] = {.lex_state = 13, .external_lex_state = 2}, - [1057] = {.lex_state = 12, .external_lex_state = 2}, - [1058] = {.lex_state = 17}, + [1051] = {.lex_state = 17}, + [1052] = {.lex_state = 17}, + [1053] = {.lex_state = 17}, + [1054] = {.lex_state = 17}, + [1055] = {.lex_state = 17}, + [1056] = {.lex_state = 17}, + [1057] = {.lex_state = 17}, + [1058] = {.lex_state = 13, .external_lex_state = 2}, [1059] = {.lex_state = 13, .external_lex_state = 2}, [1060] = {.lex_state = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 13, .external_lex_state = 2}, - [1062] = {.lex_state = 8}, - [1063] = {.lex_state = 9}, - [1064] = {.lex_state = 8}, - [1065] = {.lex_state = 8}, - [1066] = {.lex_state = 8}, - [1067] = {.lex_state = 23}, - [1068] = {.lex_state = 23}, - [1069] = {.lex_state = 23}, - [1070] = {.lex_state = 23}, - [1071] = {.lex_state = 23}, - [1072] = {.lex_state = 23}, - [1073] = {.lex_state = 14, .external_lex_state = 2}, + [1061] = {.lex_state = 15, .external_lex_state = 2}, + [1062] = {.lex_state = 15, .external_lex_state = 2}, + [1063] = {.lex_state = 13, .external_lex_state = 2}, + [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1065] = {.lex_state = 17}, + [1066] = {.lex_state = 13, .external_lex_state = 2}, + [1067] = {.lex_state = 13, .external_lex_state = 2}, + [1068] = {.lex_state = 13, .external_lex_state = 2}, + [1069] = {.lex_state = 8}, + [1070] = {.lex_state = 9}, + [1071] = {.lex_state = 8}, + [1072] = {.lex_state = 8}, + [1073] = {.lex_state = 23}, [1074] = {.lex_state = 23}, [1075] = {.lex_state = 23}, [1076] = {.lex_state = 23}, - [1077] = {.lex_state = 17}, - [1078] = {.lex_state = 8}, - [1079] = {.lex_state = 26}, - [1080] = {.lex_state = 17}, - [1081] = {.lex_state = 8}, - [1082] = {.lex_state = 8}, - [1083] = {.lex_state = 17}, + [1077] = {.lex_state = 14, .external_lex_state = 2}, + [1078] = {.lex_state = 23}, + [1079] = {.lex_state = 8}, + [1080] = {.lex_state = 23}, + [1081] = {.lex_state = 23}, + [1082] = {.lex_state = 23}, + [1083] = {.lex_state = 23}, [1084] = {.lex_state = 8}, - [1085] = {.lex_state = 17}, - [1086] = {.lex_state = 26}, - [1087] = {.lex_state = 8}, + [1085] = {.lex_state = 26}, + [1086] = {.lex_state = 17}, + [1087] = {.lex_state = 26}, [1088] = {.lex_state = 8}, [1089] = {.lex_state = 8}, [1090] = {.lex_state = 26}, - [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 26}, - [1093] = {.lex_state = 8}, + [1091] = {.lex_state = 8}, + [1092] = {.lex_state = 8}, + [1093] = {.lex_state = 17}, [1094] = {.lex_state = 17}, - [1095] = {.lex_state = 9}, - [1096] = {.lex_state = 17}, - [1097] = {.lex_state = 9}, - [1098] = {.lex_state = 17}, - [1099] = {.lex_state = 9}, - [1100] = {.lex_state = 9}, + [1095] = {.lex_state = 8}, + [1096] = {.lex_state = 26}, + [1097] = {.lex_state = 26}, + [1098] = {.lex_state = 8}, + [1099] = {.lex_state = 8}, + [1100] = {.lex_state = 17}, [1101] = {.lex_state = 14, .external_lex_state = 2}, - [1102] = {.lex_state = 9}, - [1103] = {.lex_state = 14, .external_lex_state = 2}, - [1104] = {.lex_state = 17}, - [1105] = {.lex_state = 9}, - [1106] = {.lex_state = 23}, - [1107] = {.lex_state = 23}, - [1108] = {.lex_state = 23}, - [1109] = {.lex_state = 23}, - [1110] = {.lex_state = 23}, - [1111] = {.lex_state = 23}, - [1112] = {.lex_state = 23}, + [1102] = {.lex_state = 14, .external_lex_state = 2}, + [1103] = {.lex_state = 9}, + [1104] = {.lex_state = 9}, + [1105] = {.lex_state = 17}, + [1106] = {.lex_state = 17}, + [1107] = {.lex_state = 9}, + [1108] = {.lex_state = 9}, + [1109] = {.lex_state = 9}, + [1110] = {.lex_state = 9}, + [1111] = {.lex_state = 17}, + [1112] = {.lex_state = 17}, [1113] = {.lex_state = 23}, [1114] = {.lex_state = 23}, [1115] = {.lex_state = 23}, @@ -11509,58 +11554,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1117] = {.lex_state = 23}, [1118] = {.lex_state = 23}, [1119] = {.lex_state = 23}, - [1120] = {.lex_state = 17}, + [1120] = {.lex_state = 23}, [1121] = {.lex_state = 23}, [1122] = {.lex_state = 23}, - [1123] = {.lex_state = 9}, + [1123] = {.lex_state = 23}, [1124] = {.lex_state = 23}, - [1125] = {.lex_state = 12, .external_lex_state = 2}, + [1125] = {.lex_state = 23}, [1126] = {.lex_state = 23}, - [1127] = {.lex_state = 9}, + [1127] = {.lex_state = 23}, [1128] = {.lex_state = 23}, [1129] = {.lex_state = 23}, [1130] = {.lex_state = 23}, [1131] = {.lex_state = 23}, - [1132] = {.lex_state = 9}, - [1133] = {.lex_state = 9}, + [1132] = {.lex_state = 23}, + [1133] = {.lex_state = 23}, [1134] = {.lex_state = 23}, [1135] = {.lex_state = 23}, [1136] = {.lex_state = 23}, [1137] = {.lex_state = 23}, [1138] = {.lex_state = 23}, [1139] = {.lex_state = 23}, - [1140] = {.lex_state = 14, .external_lex_state = 2}, - [1141] = {.lex_state = 9}, - [1142] = {.lex_state = 20}, - [1143] = {.lex_state = 14, .external_lex_state = 2}, + [1140] = {.lex_state = 23}, + [1141] = {.lex_state = 23}, + [1142] = {.lex_state = 23}, + [1143] = {.lex_state = 23}, [1144] = {.lex_state = 23}, - [1145] = {.lex_state = 23}, - [1146] = {.lex_state = 23}, + [1145] = {.lex_state = 14, .external_lex_state = 2}, + [1146] = {.lex_state = 14, .external_lex_state = 2}, [1147] = {.lex_state = 23}, - [1148] = {.lex_state = 23}, + [1148] = {.lex_state = 9}, [1149] = {.lex_state = 23}, - [1150] = {.lex_state = 23}, + [1150] = {.lex_state = 9}, [1151] = {.lex_state = 23}, [1152] = {.lex_state = 23}, [1153] = {.lex_state = 23}, [1154] = {.lex_state = 23}, [1155] = {.lex_state = 23}, - [1156] = {.lex_state = 23}, + [1156] = {.lex_state = 9}, [1157] = {.lex_state = 23}, - [1158] = {.lex_state = 23}, + [1158] = {.lex_state = 9}, [1159] = {.lex_state = 23}, [1160] = {.lex_state = 23}, [1161] = {.lex_state = 9}, [1162] = {.lex_state = 23}, - [1163] = {.lex_state = 9}, + [1163] = {.lex_state = 23}, [1164] = {.lex_state = 23}, [1165] = {.lex_state = 23}, [1166] = {.lex_state = 23}, [1167] = {.lex_state = 23}, [1168] = {.lex_state = 23}, - [1169] = {.lex_state = 17}, + [1169] = {.lex_state = 23}, [1170] = {.lex_state = 23}, - [1171] = {.lex_state = 17}, + [1171] = {.lex_state = 20}, [1172] = {.lex_state = 23}, [1173] = {.lex_state = 23}, [1174] = {.lex_state = 23}, @@ -11569,94 +11614,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1177] = {.lex_state = 23}, [1178] = {.lex_state = 23}, [1179] = {.lex_state = 23}, - [1180] = {.lex_state = 23}, - [1181] = {.lex_state = 23}, + [1180] = {.lex_state = 17}, + [1181] = {.lex_state = 9}, [1182] = {.lex_state = 23}, [1183] = {.lex_state = 23}, [1184] = {.lex_state = 23}, [1185] = {.lex_state = 23}, - [1186] = {.lex_state = 23}, + [1186] = {.lex_state = 14, .external_lex_state = 2}, [1187] = {.lex_state = 23}, [1188] = {.lex_state = 23}, - [1189] = {.lex_state = 23}, - [1190] = {.lex_state = 23}, + [1189] = {.lex_state = 9}, + [1190] = {.lex_state = 9}, [1191] = {.lex_state = 23}, [1192] = {.lex_state = 23}, [1193] = {.lex_state = 23}, [1194] = {.lex_state = 23}, [1195] = {.lex_state = 23}, - [1196] = {.lex_state = 12, .external_lex_state = 2}, + [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}, - [1203] = {.lex_state = 9}, + [1203] = {.lex_state = 23}, [1204] = {.lex_state = 23}, - [1205] = {.lex_state = 12, .external_lex_state = 2}, - [1206] = {.lex_state = 9}, + [1205] = {.lex_state = 23}, + [1206] = {.lex_state = 23}, [1207] = {.lex_state = 23}, - [1208] = {.lex_state = 9}, + [1208] = {.lex_state = 23}, [1209] = {.lex_state = 23}, - [1210] = {.lex_state = 23}, - [1211] = {.lex_state = 23}, - [1212] = {.lex_state = 23}, - [1213] = {.lex_state = 23}, + [1210] = {.lex_state = 9}, + [1211] = {.lex_state = 20}, + [1212] = {.lex_state = 17}, + [1213] = {.lex_state = 9}, [1214] = {.lex_state = 23}, - [1215] = {.lex_state = 23}, + [1215] = {.lex_state = 14, .external_lex_state = 2}, [1216] = {.lex_state = 23}, [1217] = {.lex_state = 23}, [1218] = {.lex_state = 23}, - [1219] = {.lex_state = 21}, + [1219] = {.lex_state = 23}, [1220] = {.lex_state = 23}, - [1221] = {.lex_state = 20}, + [1221] = {.lex_state = 23}, [1222] = {.lex_state = 23}, - [1223] = {.lex_state = 9}, - [1224] = {.lex_state = 23}, + [1223] = {.lex_state = 23}, + [1224] = {.lex_state = 14, .external_lex_state = 2}, [1225] = {.lex_state = 23}, - [1226] = {.lex_state = 9}, + [1226] = {.lex_state = 23}, [1227] = {.lex_state = 23}, [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 9}, + [1229] = {.lex_state = 23}, [1230] = {.lex_state = 23}, [1231] = {.lex_state = 23}, - [1232] = {.lex_state = 20}, + [1232] = {.lex_state = 23}, [1233] = {.lex_state = 23}, - [1234] = {.lex_state = 20}, + [1234] = {.lex_state = 23}, [1235] = {.lex_state = 23}, [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 23}, - [1238] = {.lex_state = 23}, + [1237] = {.lex_state = 17}, + [1238] = {.lex_state = 21}, [1239] = {.lex_state = 23}, - [1240] = {.lex_state = 23}, - [1241] = {.lex_state = 9}, - [1242] = {.lex_state = 9}, - [1243] = {.lex_state = 20}, + [1240] = {.lex_state = 14, .external_lex_state = 2}, + [1241] = {.lex_state = 23}, + [1242] = {.lex_state = 23}, + [1243] = {.lex_state = 23}, [1244] = {.lex_state = 23}, [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 17}, + [1246] = {.lex_state = 23}, [1247] = {.lex_state = 23}, [1248] = {.lex_state = 23}, [1249] = {.lex_state = 23}, [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 23}, + [1251] = {.lex_state = 9}, [1252] = {.lex_state = 23}, [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 23}, + [1254] = {.lex_state = 17}, [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 14, .external_lex_state = 2}, + [1257] = {.lex_state = 12, .external_lex_state = 2}, + [1258] = {.lex_state = 23}, [1259] = {.lex_state = 23}, [1260] = {.lex_state = 23}, [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 23}, + [1262] = {.lex_state = 9}, [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 23}, - [1265] = {.lex_state = 23}, + [1264] = {.lex_state = 9}, + [1265] = {.lex_state = 9}, [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 23}, + [1267] = {.lex_state = 9}, [1268] = {.lex_state = 23}, [1269] = {.lex_state = 23}, [1270] = {.lex_state = 23}, @@ -11666,42 +11711,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1274] = {.lex_state = 23}, [1275] = {.lex_state = 23}, [1276] = {.lex_state = 23}, - [1277] = {.lex_state = 9}, + [1277] = {.lex_state = 23}, [1278] = {.lex_state = 23}, - [1279] = {.lex_state = 9}, + [1279] = {.lex_state = 23}, [1280] = {.lex_state = 9}, - [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 23}, + [1281] = {.lex_state = 20}, + [1282] = {.lex_state = 12, .external_lex_state = 2}, [1283] = {.lex_state = 9}, - [1284] = {.lex_state = 23}, - [1285] = {.lex_state = 23}, + [1284] = {.lex_state = 9}, + [1285] = {.lex_state = 17}, [1286] = {.lex_state = 23}, - [1287] = {.lex_state = 23}, - [1288] = {.lex_state = 23}, - [1289] = {.lex_state = 8}, + [1287] = {.lex_state = 12, .external_lex_state = 2}, + [1288] = {.lex_state = 9}, + [1289] = {.lex_state = 9}, [1290] = {.lex_state = 23}, - [1291] = {.lex_state = 20}, + [1291] = {.lex_state = 23}, [1292] = {.lex_state = 23}, [1293] = {.lex_state = 21}, - [1294] = {.lex_state = 23}, - [1295] = {.lex_state = 14, .external_lex_state = 2}, - [1296] = {.lex_state = 20}, - [1297] = {.lex_state = 20}, - [1298] = {.lex_state = 20}, - [1299] = {.lex_state = 20}, - [1300] = {.lex_state = 9}, - [1301] = {.lex_state = 23}, + [1294] = {.lex_state = 20}, + [1295] = {.lex_state = 23}, + [1296] = {.lex_state = 9}, + [1297] = {.lex_state = 23}, + [1298] = {.lex_state = 23}, + [1299] = {.lex_state = 9}, + [1300] = {.lex_state = 23}, + [1301] = {.lex_state = 20}, [1302] = {.lex_state = 23}, - [1303] = {.lex_state = 23}, + [1303] = {.lex_state = 20}, [1304] = {.lex_state = 23}, [1305] = {.lex_state = 23}, [1306] = {.lex_state = 23}, - [1307] = {.lex_state = 23}, + [1307] = {.lex_state = 9}, [1308] = {.lex_state = 23}, [1309] = {.lex_state = 23}, [1310] = {.lex_state = 23}, [1311] = {.lex_state = 23}, - [1312] = {.lex_state = 9}, + [1312] = {.lex_state = 23}, [1313] = {.lex_state = 23}, [1314] = {.lex_state = 23}, [1315] = {.lex_state = 23}, @@ -11709,22 +11754,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1317] = {.lex_state = 23}, [1318] = {.lex_state = 23}, [1319] = {.lex_state = 23}, - [1320] = {.lex_state = 9}, + [1320] = {.lex_state = 23}, [1321] = {.lex_state = 23}, [1322] = {.lex_state = 23}, [1323] = {.lex_state = 23}, - [1324] = {.lex_state = 23}, + [1324] = {.lex_state = 8}, [1325] = {.lex_state = 23}, - [1326] = {.lex_state = 23}, + [1326] = {.lex_state = 20}, [1327] = {.lex_state = 23}, [1328] = {.lex_state = 23}, - [1329] = {.lex_state = 20}, + [1329] = {.lex_state = 23}, [1330] = {.lex_state = 23}, [1331] = {.lex_state = 23}, [1332] = {.lex_state = 23}, - [1333] = {.lex_state = 23}, + [1333] = {.lex_state = 20}, [1334] = {.lex_state = 23}, - [1335] = {.lex_state = 9}, + [1335] = {.lex_state = 20}, [1336] = {.lex_state = 20}, [1337] = {.lex_state = 23}, [1338] = {.lex_state = 23}, @@ -11734,7 +11779,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1342] = {.lex_state = 23}, [1343] = {.lex_state = 23}, [1344] = {.lex_state = 23}, - [1345] = {.lex_state = 14, .external_lex_state = 2}, + [1345] = {.lex_state = 23}, [1346] = {.lex_state = 23}, [1347] = {.lex_state = 23}, [1348] = {.lex_state = 23}, @@ -11750,14 +11795,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1358] = {.lex_state = 23}, [1359] = {.lex_state = 23}, [1360] = {.lex_state = 23}, - [1361] = {.lex_state = 17}, + [1361] = {.lex_state = 23}, [1362] = {.lex_state = 23}, [1363] = {.lex_state = 23}, [1364] = {.lex_state = 23}, [1365] = {.lex_state = 23}, [1366] = {.lex_state = 23}, [1367] = {.lex_state = 23}, - [1368] = {.lex_state = 14, .external_lex_state = 2}, + [1368] = {.lex_state = 23}, [1369] = {.lex_state = 23}, [1370] = {.lex_state = 23}, [1371] = {.lex_state = 23}, @@ -11765,9 +11810,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1373] = {.lex_state = 23}, [1374] = {.lex_state = 23}, [1375] = {.lex_state = 23}, - [1376] = {.lex_state = 23}, + [1376] = {.lex_state = 9}, [1377] = {.lex_state = 23}, - [1378] = {.lex_state = 23}, + [1378] = {.lex_state = 20}, [1379] = {.lex_state = 23}, [1380] = {.lex_state = 23}, [1381] = {.lex_state = 23}, @@ -11781,7 +11826,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1389] = {.lex_state = 23}, [1390] = {.lex_state = 23}, [1391] = {.lex_state = 23}, - [1392] = {.lex_state = 23}, + [1392] = {.lex_state = 20}, [1393] = {.lex_state = 23}, [1394] = {.lex_state = 23}, [1395] = {.lex_state = 23}, @@ -11790,7 +11835,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1398] = {.lex_state = 23}, [1399] = {.lex_state = 23}, [1400] = {.lex_state = 23}, - [1401] = {.lex_state = 9}, + [1401] = {.lex_state = 23}, [1402] = {.lex_state = 23}, [1403] = {.lex_state = 23}, [1404] = {.lex_state = 23}, @@ -11806,23 +11851,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1414] = {.lex_state = 23}, [1415] = {.lex_state = 23}, [1416] = {.lex_state = 23}, - [1417] = {.lex_state = 9}, + [1417] = {.lex_state = 23}, [1418] = {.lex_state = 23}, - [1419] = {.lex_state = 17}, + [1419] = {.lex_state = 23}, [1420] = {.lex_state = 23}, [1421] = {.lex_state = 23}, [1422] = {.lex_state = 23}, [1423] = {.lex_state = 23}, [1424] = {.lex_state = 23}, [1425] = {.lex_state = 23}, - [1426] = {.lex_state = 9}, - [1427] = {.lex_state = 9}, - [1428] = {.lex_state = 9}, - [1429] = {.lex_state = 9}, - [1430] = {.lex_state = 17}, + [1426] = {.lex_state = 23}, + [1427] = {.lex_state = 23}, + [1428] = {.lex_state = 17}, + [1429] = {.lex_state = 23}, + [1430] = {.lex_state = 23}, [1431] = {.lex_state = 9}, - [1432] = {.lex_state = 9}, - [1433] = {.lex_state = 9}, + [1432] = {.lex_state = 23}, + [1433] = {.lex_state = 17}, [1434] = {.lex_state = 9}, [1435] = {.lex_state = 9}, [1436] = {.lex_state = 9}, @@ -11876,7 +11921,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1484] = {.lex_state = 9}, [1485] = {.lex_state = 9}, [1486] = {.lex_state = 9}, - [1487] = {.lex_state = 9}, + [1487] = {.lex_state = 10}, [1488] = {.lex_state = 9}, [1489] = {.lex_state = 9}, [1490] = {.lex_state = 9}, @@ -11920,7 +11965,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1528] = {.lex_state = 9}, [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 10}, + [1531] = {.lex_state = 9}, [1532] = {.lex_state = 9}, [1533] = {.lex_state = 9}, [1534] = {.lex_state = 9}, @@ -11939,186 +11984,186 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1547] = {.lex_state = 9}, [1548] = {.lex_state = 9}, [1549] = {.lex_state = 9}, - [1550] = {.lex_state = 13, .external_lex_state = 2}, + [1550] = {.lex_state = 9}, [1551] = {.lex_state = 9}, - [1552] = {.lex_state = 13, .external_lex_state = 2}, - [1553] = {.lex_state = 17}, - [1554] = {.lex_state = 17}, + [1552] = {.lex_state = 9}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 9}, [1555] = {.lex_state = 9}, [1556] = {.lex_state = 9}, [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 17}, + [1558] = {.lex_state = 9}, [1559] = {.lex_state = 9}, [1560] = {.lex_state = 9}, [1561] = {.lex_state = 9}, - [1562] = {.lex_state = 9}, + [1562] = {.lex_state = 13, .external_lex_state = 2}, [1563] = {.lex_state = 9}, - [1564] = {.lex_state = 9}, - [1565] = {.lex_state = 9}, - [1566] = {.lex_state = 11}, - [1567] = {.lex_state = 17}, - [1568] = {.lex_state = 11}, - [1569] = {.lex_state = 11}, - [1570] = {.lex_state = 13, .external_lex_state = 2}, - [1571] = {.lex_state = 13, .external_lex_state = 2}, - [1572] = {.lex_state = 9}, - [1573] = {.lex_state = 17}, + [1564] = {.lex_state = 13, .external_lex_state = 2}, + [1565] = {.lex_state = 13, .external_lex_state = 2}, + [1566] = {.lex_state = 17}, + [1567] = {.lex_state = 9}, + [1568] = {.lex_state = 17}, + [1569] = {.lex_state = 9}, + [1570] = {.lex_state = 17}, + [1571] = {.lex_state = 17}, + [1572] = {.lex_state = 13, .external_lex_state = 2}, + [1573] = {.lex_state = 13, .external_lex_state = 2}, [1574] = {.lex_state = 13, .external_lex_state = 2}, - [1575] = {.lex_state = 9}, - [1576] = {.lex_state = 9}, - [1577] = {.lex_state = 13, .external_lex_state = 2}, + [1575] = {.lex_state = 17}, + [1576] = {.lex_state = 11}, + [1577] = {.lex_state = 9}, [1578] = {.lex_state = 9}, - [1579] = {.lex_state = 9}, - [1580] = {.lex_state = 9}, + [1579] = {.lex_state = 11}, + [1580] = {.lex_state = 11}, [1581] = {.lex_state = 9}, [1582] = {.lex_state = 9}, [1583] = {.lex_state = 9}, [1584] = {.lex_state = 9}, - [1585] = {.lex_state = 10}, + [1585] = {.lex_state = 9}, [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 11}, + [1587] = {.lex_state = 9}, [1588] = {.lex_state = 9}, [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 11}, - [1591] = {.lex_state = 11}, - [1592] = {.lex_state = 11}, - [1593] = {.lex_state = 10}, - [1594] = {.lex_state = 11}, - [1595] = {.lex_state = 10}, - [1596] = {.lex_state = 10}, - [1597] = {.lex_state = 9}, + [1590] = {.lex_state = 9}, + [1591] = {.lex_state = 9}, + [1592] = {.lex_state = 9}, + [1593] = {.lex_state = 9}, + [1594] = {.lex_state = 9}, + [1595] = {.lex_state = 9}, + [1596] = {.lex_state = 9}, + [1597] = {.lex_state = 10}, [1598] = {.lex_state = 11}, - [1599] = {.lex_state = 9}, - [1600] = {.lex_state = 9}, - [1601] = {.lex_state = 9}, - [1602] = {.lex_state = 10}, + [1599] = {.lex_state = 10}, + [1600] = {.lex_state = 11}, + [1601] = {.lex_state = 11}, + [1602] = {.lex_state = 11}, [1603] = {.lex_state = 9}, - [1604] = {.lex_state = 11}, - [1605] = {.lex_state = 11}, - [1606] = {.lex_state = 11}, - [1607] = {.lex_state = 17}, - [1608] = {.lex_state = 10}, - [1609] = {.lex_state = 10}, - [1610] = {.lex_state = 10}, - [1611] = {.lex_state = 10}, + [1604] = {.lex_state = 9}, + [1605] = {.lex_state = 9}, + [1606] = {.lex_state = 9}, + [1607] = {.lex_state = 9}, + [1608] = {.lex_state = 9}, + [1609] = {.lex_state = 11}, + [1610] = {.lex_state = 9}, + [1611] = {.lex_state = 11}, [1612] = {.lex_state = 10}, [1613] = {.lex_state = 10}, - [1614] = {.lex_state = 10}, - [1615] = {.lex_state = 17}, + [1614] = {.lex_state = 11}, + [1615] = {.lex_state = 11}, [1616] = {.lex_state = 10}, - [1617] = {.lex_state = 10}, + [1617] = {.lex_state = 11}, [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 17}, + [1619] = {.lex_state = 9}, [1620] = {.lex_state = 9}, [1621] = {.lex_state = 10}, [1622] = {.lex_state = 10}, - [1623] = {.lex_state = 9}, - [1624] = {.lex_state = 9}, - [1625] = {.lex_state = 9}, - [1626] = {.lex_state = 9}, - [1627] = {.lex_state = 9}, - [1628] = {.lex_state = 9}, - [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 9}, + [1623] = {.lex_state = 10}, + [1624] = {.lex_state = 10}, + [1625] = {.lex_state = 17}, + [1626] = {.lex_state = 10}, + [1627] = {.lex_state = 10}, + [1628] = {.lex_state = 10}, + [1629] = {.lex_state = 10}, + [1630] = {.lex_state = 10}, [1631] = {.lex_state = 10}, - [1632] = {.lex_state = 9}, - [1633] = {.lex_state = 9}, - [1634] = {.lex_state = 9}, + [1632] = {.lex_state = 17}, + [1633] = {.lex_state = 10}, + [1634] = {.lex_state = 10}, [1635] = {.lex_state = 9}, [1636] = {.lex_state = 9}, [1637] = {.lex_state = 9}, - [1638] = {.lex_state = 17}, - [1639] = {.lex_state = 10}, + [1638] = {.lex_state = 9}, + [1639] = {.lex_state = 9}, [1640] = {.lex_state = 9}, [1641] = {.lex_state = 9}, - [1642] = {.lex_state = 10}, - [1643] = {.lex_state = 10}, + [1642] = {.lex_state = 9}, + [1643] = {.lex_state = 9}, [1644] = {.lex_state = 9}, - [1645] = {.lex_state = 22}, + [1645] = {.lex_state = 9}, [1646] = {.lex_state = 9}, - [1647] = {.lex_state = 22}, - [1648] = {.lex_state = 10}, - [1649] = {.lex_state = 22}, - [1650] = {.lex_state = 10}, - [1651] = {.lex_state = 9}, - [1652] = {.lex_state = 22}, - [1653] = {.lex_state = 22}, - [1654] = {.lex_state = 10}, + [1647] = {.lex_state = 17}, + [1648] = {.lex_state = 9}, + [1649] = {.lex_state = 9}, + [1650] = {.lex_state = 9}, + [1651] = {.lex_state = 10}, + [1652] = {.lex_state = 17}, + [1653] = {.lex_state = 10}, + [1654] = {.lex_state = 22}, [1655] = {.lex_state = 9}, - [1656] = {.lex_state = 9}, - [1657] = {.lex_state = 10}, - [1658] = {.lex_state = 9}, + [1656] = {.lex_state = 10}, + [1657] = {.lex_state = 9}, + [1658] = {.lex_state = 22}, [1659] = {.lex_state = 10}, - [1660] = {.lex_state = 10}, + [1660] = {.lex_state = 22}, [1661] = {.lex_state = 10}, - [1662] = {.lex_state = 10}, + [1662] = {.lex_state = 22}, [1663] = {.lex_state = 10}, - [1664] = {.lex_state = 9}, - [1665] = {.lex_state = 9}, - [1666] = {.lex_state = 10}, + [1664] = {.lex_state = 22}, + [1665] = {.lex_state = 22}, + [1666] = {.lex_state = 9}, [1667] = {.lex_state = 10}, - [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 9}, - [1670] = {.lex_state = 22}, - [1671] = {.lex_state = 9}, - [1672] = {.lex_state = 9}, + [1668] = {.lex_state = 10}, + [1669] = {.lex_state = 10}, + [1670] = {.lex_state = 10}, + [1671] = {.lex_state = 10}, + [1672] = {.lex_state = 10}, [1673] = {.lex_state = 9}, - [1674] = {.lex_state = 9}, + [1674] = {.lex_state = 10}, [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 10}, - [1677] = {.lex_state = 9}, - [1678] = {.lex_state = 17}, + [1676] = {.lex_state = 9}, + [1677] = {.lex_state = 10}, + [1678] = {.lex_state = 9}, [1679] = {.lex_state = 9}, [1680] = {.lex_state = 9}, - [1681] = {.lex_state = 11}, - [1682] = {.lex_state = 22}, - [1683] = {.lex_state = 9}, - [1684] = {.lex_state = 22}, - [1685] = {.lex_state = 22}, + [1681] = {.lex_state = 10}, + [1682] = {.lex_state = 9}, + [1683] = {.lex_state = 10}, + [1684] = {.lex_state = 9}, + [1685] = {.lex_state = 9}, [1686] = {.lex_state = 9}, - [1687] = {.lex_state = 22}, + [1687] = {.lex_state = 9}, [1688] = {.lex_state = 22}, - [1689] = {.lex_state = 22}, - [1690] = {.lex_state = 9}, - [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 9}, + [1689] = {.lex_state = 9}, + [1690] = {.lex_state = 22}, + [1691] = {.lex_state = 9}, + [1692] = {.lex_state = 10}, [1693] = {.lex_state = 10}, [1694] = {.lex_state = 9}, [1695] = {.lex_state = 9}, - [1696] = {.lex_state = 10}, - [1697] = {.lex_state = 10}, - [1698] = {.lex_state = 10}, - [1699] = {.lex_state = 9}, - [1700] = {.lex_state = 10}, + [1696] = {.lex_state = 9}, + [1697] = {.lex_state = 17}, + [1698] = {.lex_state = 11}, + [1699] = {.lex_state = 22}, + [1700] = {.lex_state = 9}, [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 9}, - [1703] = {.lex_state = 10}, + [1702] = {.lex_state = 22}, + [1703] = {.lex_state = 9}, [1704] = {.lex_state = 10}, - [1705] = {.lex_state = 10}, - [1706] = {.lex_state = 9}, + [1705] = {.lex_state = 9}, + [1706] = {.lex_state = 10}, [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 10}, - [1709] = {.lex_state = 10}, + [1708] = {.lex_state = 22}, + [1709] = {.lex_state = 9}, [1710] = {.lex_state = 9}, - [1711] = {.lex_state = 10}, - [1712] = {.lex_state = 10}, + [1711] = {.lex_state = 9}, + [1712] = {.lex_state = 22}, [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 10}, + [1714] = {.lex_state = 9}, [1715] = {.lex_state = 10}, [1716] = {.lex_state = 10}, - [1717] = {.lex_state = 10}, - [1718] = {.lex_state = 9}, + [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 = 10}, + [1723] = {.lex_state = 9}, [1724] = {.lex_state = 10}, - [1725] = {.lex_state = 9}, - [1726] = {.lex_state = 9}, + [1725] = {.lex_state = 10}, + [1726] = {.lex_state = 10}, [1727] = {.lex_state = 9}, [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 9}, + [1729] = {.lex_state = 10}, [1730] = {.lex_state = 10}, [1731] = {.lex_state = 10}, [1732] = {.lex_state = 10}, @@ -12128,23 +12173,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1736] = {.lex_state = 10}, [1737] = {.lex_state = 10}, [1738] = {.lex_state = 10}, - [1739] = {.lex_state = 10}, - [1740] = {.lex_state = 9}, + [1739] = {.lex_state = 9}, + [1740] = {.lex_state = 10}, [1741] = {.lex_state = 9}, - [1742] = {.lex_state = 10}, - [1743] = {.lex_state = 9}, + [1742] = {.lex_state = 9}, + [1743] = {.lex_state = 10}, [1744] = {.lex_state = 10}, - [1745] = {.lex_state = 9}, - [1746] = {.lex_state = 9}, - [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 9}, - [1749] = {.lex_state = 9}, + [1745] = {.lex_state = 10}, + [1746] = {.lex_state = 10}, + [1747] = {.lex_state = 10}, + [1748] = {.lex_state = 10}, + [1749] = {.lex_state = 10}, [1750] = {.lex_state = 9}, - [1751] = {.lex_state = 9}, - [1752] = {.lex_state = 9}, - [1753] = {.lex_state = 9}, - [1754] = {.lex_state = 9}, - [1755] = {.lex_state = 9}, + [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}, @@ -12152,64 +12197,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1760] = {.lex_state = 10}, [1761] = {.lex_state = 10}, [1762] = {.lex_state = 10}, - [1763] = {.lex_state = 9}, - [1764] = {.lex_state = 9}, + [1763] = {.lex_state = 10}, + [1764] = {.lex_state = 17}, [1765] = {.lex_state = 10}, - [1766] = {.lex_state = 10}, - [1767] = {.lex_state = 10}, + [1766] = {.lex_state = 9}, + [1767] = {.lex_state = 9}, [1768] = {.lex_state = 9}, - [1769] = {.lex_state = 10}, - [1770] = {.lex_state = 10}, - [1771] = {.lex_state = 10}, - [1772] = {.lex_state = 10}, - [1773] = {.lex_state = 10}, - [1774] = {.lex_state = 10}, - [1775] = {.lex_state = 10}, - [1776] = {.lex_state = 10}, - [1777] = {.lex_state = 10}, - [1778] = {.lex_state = 10}, - [1779] = {.lex_state = 10}, - [1780] = {.lex_state = 10}, - [1781] = {.lex_state = 10}, + [1769] = {.lex_state = 9}, + [1770] = {.lex_state = 9}, + [1771] = {.lex_state = 9}, + [1772] = {.lex_state = 9}, + [1773] = {.lex_state = 9}, + [1774] = {.lex_state = 9}, + [1775] = {.lex_state = 9}, + [1776] = {.lex_state = 9}, + [1777] = {.lex_state = 9}, + [1778] = {.lex_state = 9}, + [1779] = {.lex_state = 9}, + [1780] = {.lex_state = 9}, + [1781] = {.lex_state = 9}, [1782] = {.lex_state = 10}, [1783] = {.lex_state = 10}, [1784] = {.lex_state = 10}, [1785] = {.lex_state = 10}, [1786] = {.lex_state = 10}, [1787] = {.lex_state = 10}, - [1788] = {.lex_state = 10}, - [1789] = {.lex_state = 10}, + [1788] = {.lex_state = 9}, + [1789] = {.lex_state = 9}, [1790] = {.lex_state = 10}, [1791] = {.lex_state = 10}, [1792] = {.lex_state = 10}, - [1793] = {.lex_state = 10}, + [1793] = {.lex_state = 9}, [1794] = {.lex_state = 10}, [1795] = {.lex_state = 10}, - [1796] = {.lex_state = 9}, + [1796] = {.lex_state = 10}, [1797] = {.lex_state = 10}, - [1798] = {.lex_state = 10}, + [1798] = {.lex_state = 9}, [1799] = {.lex_state = 10}, - [1800] = {.lex_state = 9}, + [1800] = {.lex_state = 10}, [1801] = {.lex_state = 10}, [1802] = {.lex_state = 10}, [1803] = {.lex_state = 10}, [1804] = {.lex_state = 10}, [1805] = {.lex_state = 10}, [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 9}, + [1807] = {.lex_state = 10}, [1808] = {.lex_state = 10}, - [1809] = {.lex_state = 9}, + [1809] = {.lex_state = 10}, [1810] = {.lex_state = 10}, [1811] = {.lex_state = 10}, [1812] = {.lex_state = 10}, [1813] = {.lex_state = 10}, [1814] = {.lex_state = 10}, [1815] = {.lex_state = 10}, - [1816] = {.lex_state = 10}, - [1817] = {.lex_state = 10}, + [1816] = {.lex_state = 9}, + [1817] = {.lex_state = 9}, [1818] = {.lex_state = 10}, - [1819] = {.lex_state = 9}, - [1820] = {.lex_state = 10}, + [1819] = {.lex_state = 10}, + [1820] = {.lex_state = 9}, [1821] = {.lex_state = 10}, [1822] = {.lex_state = 10}, [1823] = {.lex_state = 10}, @@ -12227,7 +12272,7 @@ 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}, @@ -12236,40 +12281,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1844] = {.lex_state = 10}, [1845] = {.lex_state = 10}, [1846] = {.lex_state = 10}, - [1847] = {.lex_state = 10}, - [1848] = {.lex_state = 9}, + [1847] = {.lex_state = 9}, + [1848] = {.lex_state = 10}, [1849] = {.lex_state = 10}, - [1850] = {.lex_state = 9}, + [1850] = {.lex_state = 10}, [1851] = {.lex_state = 10}, [1852] = {.lex_state = 10}, - [1853] = {.lex_state = 9}, - [1854] = {.lex_state = 9}, + [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 = 17}, - [1861] = {.lex_state = 9}, - [1862] = {.lex_state = 9}, - [1863] = {.lex_state = 9}, + [1859] = {.lex_state = 10}, + [1860] = {.lex_state = 10}, + [1861] = {.lex_state = 10}, + [1862] = {.lex_state = 10}, + [1863] = {.lex_state = 10}, [1864] = {.lex_state = 10}, - [1865] = {.lex_state = 9}, - [1866] = {.lex_state = 10}, + [1865] = {.lex_state = 10}, + [1866] = {.lex_state = 9}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 10}, - [1869] = {.lex_state = 9}, + [1868] = {.lex_state = 9}, + [1869] = {.lex_state = 10}, [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 9}, + [1871] = {.lex_state = 10}, [1872] = {.lex_state = 9}, [1873] = {.lex_state = 9}, - [1874] = {.lex_state = 9}, + [1874] = {.lex_state = 10}, [1875] = {.lex_state = 9}, [1876] = {.lex_state = 10}, [1877] = {.lex_state = 10}, - [1878] = {.lex_state = 9}, + [1878] = {.lex_state = 10}, [1879] = {.lex_state = 9}, - [1880] = {.lex_state = 10}, + [1880] = {.lex_state = 9}, [1881] = {.lex_state = 9}, [1882] = {.lex_state = 9}, [1883] = {.lex_state = 9}, @@ -12297,156 +12342,156 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1905] = {.lex_state = 9}, [1906] = {.lex_state = 9}, [1907] = {.lex_state = 9}, - [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 17}, + [1908] = {.lex_state = 9}, + [1909] = {.lex_state = 9}, [1910] = {.lex_state = 9}, [1911] = {.lex_state = 9}, - [1912] = {.lex_state = 10}, + [1912] = {.lex_state = 9}, [1913] = {.lex_state = 9}, - [1914] = {.lex_state = 10}, + [1914] = {.lex_state = 9}, [1915] = {.lex_state = 9}, [1916] = {.lex_state = 9}, [1917] = {.lex_state = 9}, - [1918] = {.lex_state = 10}, - [1919] = {.lex_state = 9}, - [1920] = {.lex_state = 9}, - [1921] = {.lex_state = 9}, - [1922] = {.lex_state = 9}, - [1923] = {.lex_state = 9}, - [1924] = {.lex_state = 9}, - [1925] = {.lex_state = 9}, - [1926] = {.lex_state = 9}, - [1927] = {.lex_state = 9}, + [1918] = {.lex_state = 9}, + [1919] = {.lex_state = 10}, + [1920] = {.lex_state = 10}, + [1921] = {.lex_state = 10}, + [1922] = {.lex_state = 10}, + [1923] = {.lex_state = 10}, + [1924] = {.lex_state = 10}, + [1925] = {.lex_state = 10}, + [1926] = {.lex_state = 17}, + [1927] = {.lex_state = 10}, [1928] = {.lex_state = 9}, - [1929] = {.lex_state = 9}, + [1929] = {.lex_state = 10}, [1930] = {.lex_state = 9}, - [1931] = {.lex_state = 9}, + [1931] = {.lex_state = 10}, [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 10}, + [1933] = {.lex_state = 9}, [1934] = {.lex_state = 9}, [1935] = {.lex_state = 9}, - [1936] = {.lex_state = 9}, - [1937] = {.lex_state = 9}, - [1938] = {.lex_state = 17}, + [1936] = {.lex_state = 10}, + [1937] = {.lex_state = 17}, + [1938] = {.lex_state = 9}, [1939] = {.lex_state = 9}, - [1940] = {.lex_state = 10}, - [1941] = {.lex_state = 17}, + [1940] = {.lex_state = 9}, + [1941] = {.lex_state = 9}, [1942] = {.lex_state = 9}, [1943] = {.lex_state = 9}, [1944] = {.lex_state = 9}, [1945] = {.lex_state = 10}, [1946] = {.lex_state = 9}, - [1947] = {.lex_state = 17}, + [1947] = {.lex_state = 9}, [1948] = {.lex_state = 9}, - [1949] = {.lex_state = 17}, + [1949] = {.lex_state = 9}, [1950] = {.lex_state = 9}, [1951] = {.lex_state = 9}, [1952] = {.lex_state = 9}, - [1953] = {.lex_state = 17}, + [1953] = {.lex_state = 10}, [1954] = {.lex_state = 9}, - [1955] = {.lex_state = 9}, + [1955] = {.lex_state = 17}, [1956] = {.lex_state = 17}, - [1957] = {.lex_state = 17}, - [1958] = {.lex_state = 17}, + [1957] = {.lex_state = 9}, + [1958] = {.lex_state = 9}, [1959] = {.lex_state = 17}, - [1960] = {.lex_state = 17}, + [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}, - [1972] = {.lex_state = 17}, - [1973] = {.lex_state = 17}, + [1962] = {.lex_state = 9}, + [1963] = {.lex_state = 9}, + [1964] = {.lex_state = 10}, + [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 = 9}, + [1973] = {.lex_state = 9}, [1974] = {.lex_state = 17}, [1975] = {.lex_state = 17}, [1976] = {.lex_state = 17}, [1977] = {.lex_state = 17}, - [1978] = {.lex_state = 31}, - [1979] = {.lex_state = 31}, - [1980] = {.lex_state = 18}, - [1981] = {.lex_state = 18}, - [1982] = {.lex_state = 18}, - [1983] = {.lex_state = 18}, - [1984] = {.lex_state = 18}, + [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}, + [1987] = {.lex_state = 17}, [1988] = {.lex_state = 17}, - [1989] = {.lex_state = 18}, - [1990] = {.lex_state = 18}, - [1991] = {.lex_state = 18}, - [1992] = {.lex_state = 18}, - [1993] = {.lex_state = 18}, - [1994] = {.lex_state = 18}, + [1989] = {.lex_state = 17}, + [1990] = {.lex_state = 17}, + [1991] = {.lex_state = 17}, + [1992] = {.lex_state = 17}, + [1993] = {.lex_state = 17}, + [1994] = {.lex_state = 17}, [1995] = {.lex_state = 17}, [1996] = {.lex_state = 31}, - [1997] = {.lex_state = 17}, - [1998] = {.lex_state = 17}, - [1999] = {.lex_state = 13, .external_lex_state = 2}, - [2000] = {.lex_state = 17}, - [2001] = {.lex_state = 17}, + [1997] = {.lex_state = 31}, + [1998] = {.lex_state = 18}, + [1999] = {.lex_state = 18}, + [2000] = {.lex_state = 18}, + [2001] = {.lex_state = 18}, [2002] = {.lex_state = 18}, - [2003] = {.lex_state = 31}, - [2004] = {.lex_state = 31}, + [2003] = {.lex_state = 17}, + [2004] = {.lex_state = 17}, [2005] = {.lex_state = 18}, [2006] = {.lex_state = 17}, - [2007] = {.lex_state = 31}, - [2008] = {.lex_state = 17}, - [2009] = {.lex_state = 17}, + [2007] = {.lex_state = 17}, + [2008] = {.lex_state = 18}, + [2009] = {.lex_state = 18}, [2010] = {.lex_state = 18}, - [2011] = {.lex_state = 31}, - [2012] = {.lex_state = 17}, - [2013] = {.lex_state = 17}, - [2014] = {.lex_state = 31}, - [2015] = {.lex_state = 31}, - [2016] = {.lex_state = 17}, - [2017] = {.lex_state = 17}, - [2018] = {.lex_state = 17}, - [2019] = {.lex_state = 31}, + [2011] = {.lex_state = 18}, + [2012] = {.lex_state = 18}, + [2013] = {.lex_state = 18}, + [2014] = {.lex_state = 17}, + [2015] = {.lex_state = 17}, + [2016] = {.lex_state = 13, .external_lex_state = 2}, + [2017] = {.lex_state = 31}, + [2018] = {.lex_state = 18}, + [2019] = {.lex_state = 17}, [2020] = {.lex_state = 17}, [2021] = {.lex_state = 31}, - [2022] = {.lex_state = 18}, - [2023] = {.lex_state = 17}, + [2022] = {.lex_state = 17}, + [2023] = {.lex_state = 18}, [2024] = {.lex_state = 17}, - [2025] = {.lex_state = 31}, - [2026] = {.lex_state = 17}, + [2025] = {.lex_state = 17}, + [2026] = {.lex_state = 31}, [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 31}, - [2029] = {.lex_state = 17}, - [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 31}, - [2032] = {.lex_state = 18}, - [2033] = {.lex_state = 18}, + [2028] = {.lex_state = 18}, + [2029] = {.lex_state = 31}, + [2030] = {.lex_state = 17}, + [2031] = {.lex_state = 17}, + [2032] = {.lex_state = 31}, + [2033] = {.lex_state = 17}, [2034] = {.lex_state = 18}, [2035] = {.lex_state = 31}, - [2036] = {.lex_state = 31}, - [2037] = {.lex_state = 31}, + [2036] = {.lex_state = 17}, + [2037] = {.lex_state = 17}, [2038] = {.lex_state = 31}, - [2039] = {.lex_state = 31}, - [2040] = {.lex_state = 18}, - [2041] = {.lex_state = 31}, + [2039] = {.lex_state = 18}, + [2040] = {.lex_state = 17}, + [2041] = {.lex_state = 18}, [2042] = {.lex_state = 31}, - [2043] = {.lex_state = 17}, + [2043] = {.lex_state = 31}, [2044] = {.lex_state = 17}, [2045] = {.lex_state = 31}, - [2046] = {.lex_state = 17}, + [2046] = {.lex_state = 18}, [2047] = {.lex_state = 31}, [2048] = {.lex_state = 31}, - [2049] = {.lex_state = 31}, - [2050] = {.lex_state = 31}, - [2051] = {.lex_state = 17}, - [2052] = {.lex_state = 31}, - [2053] = {.lex_state = 31}, + [2049] = {.lex_state = 17}, + [2050] = {.lex_state = 17}, + [2051] = {.lex_state = 31}, + [2052] = {.lex_state = 17}, + [2053] = {.lex_state = 18}, [2054] = {.lex_state = 31}, [2055] = {.lex_state = 31}, [2056] = {.lex_state = 31}, - [2057] = {.lex_state = 31}, + [2057] = {.lex_state = 17}, [2058] = {.lex_state = 31}, [2059] = {.lex_state = 31}, [2060] = {.lex_state = 31}, @@ -12454,62 +12499,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2062] = {.lex_state = 31}, [2063] = {.lex_state = 31}, [2064] = {.lex_state = 31}, - [2065] = {.lex_state = 17}, + [2065] = {.lex_state = 31}, [2066] = {.lex_state = 31}, - [2067] = {.lex_state = 31}, - [2068] = {.lex_state = 31}, + [2067] = {.lex_state = 17}, + [2068] = {.lex_state = 17}, [2069] = {.lex_state = 31}, - [2070] = {.lex_state = 31}, + [2070] = {.lex_state = 17}, [2071] = {.lex_state = 31}, [2072] = {.lex_state = 31}, - [2073] = {.lex_state = 17}, - [2074] = {.lex_state = 17}, + [2073] = {.lex_state = 31}, + [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}, + [2076] = {.lex_state = 31}, + [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 = 31}, - [2084] = {.lex_state = 17}, - [2085] = {.lex_state = 18}, - [2086] = {.lex_state = 18}, - [2087] = {.lex_state = 18}, - [2088] = {.lex_state = 18}, - [2089] = {.lex_state = 18}, - [2090] = {.lex_state = 18}, - [2091] = {.lex_state = 18}, - [2092] = {.lex_state = 19}, + [2084] = {.lex_state = 31}, + [2085] = {.lex_state = 31}, + [2086] = {.lex_state = 31}, + [2087] = {.lex_state = 31}, + [2088] = {.lex_state = 31}, + [2089] = {.lex_state = 17}, + [2090] = {.lex_state = 31}, + [2091] = {.lex_state = 31}, + [2092] = {.lex_state = 17}, [2093] = {.lex_state = 31}, - [2094] = {.lex_state = 18}, - [2095] = {.lex_state = 18}, - [2096] = {.lex_state = 18}, - [2097] = {.lex_state = 31}, - [2098] = {.lex_state = 18}, - [2099] = {.lex_state = 18}, - [2100] = {.lex_state = 18}, + [2094] = {.lex_state = 31}, + [2095] = {.lex_state = 17}, + [2096] = {.lex_state = 17}, + [2097] = {.lex_state = 17}, + [2098] = {.lex_state = 17}, + [2099] = {.lex_state = 17}, + [2100] = {.lex_state = 17}, [2101] = {.lex_state = 17}, [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 17}, - [2104] = {.lex_state = 17}, - [2105] = {.lex_state = 17}, - [2106] = {.lex_state = 17}, - [2107] = {.lex_state = 17}, - [2108] = {.lex_state = 17}, - [2109] = {.lex_state = 17}, - [2110] = {.lex_state = 24}, - [2111] = {.lex_state = 31}, - [2112] = {.lex_state = 17}, - [2113] = {.lex_state = 17}, - [2114] = {.lex_state = 17}, - [2115] = {.lex_state = 17}, + [2103] = {.lex_state = 31}, + [2104] = {.lex_state = 18}, + [2105] = {.lex_state = 18}, + [2106] = {.lex_state = 18}, + [2107] = {.lex_state = 18}, + [2108] = {.lex_state = 18}, + [2109] = {.lex_state = 19}, + [2110] = {.lex_state = 17}, + [2111] = {.lex_state = 18}, + [2112] = {.lex_state = 31}, + [2113] = {.lex_state = 18}, + [2114] = {.lex_state = 18}, + [2115] = {.lex_state = 18}, [2116] = {.lex_state = 18}, - [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 31}, - [2119] = {.lex_state = 24}, - [2120] = {.lex_state = 18}, + [2117] = {.lex_state = 18}, + [2118] = {.lex_state = 18}, + [2119] = {.lex_state = 18}, + [2120] = {.lex_state = 17}, [2121] = {.lex_state = 17}, [2122] = {.lex_state = 17}, [2123] = {.lex_state = 17}, @@ -12517,164 +12562,164 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2125] = {.lex_state = 17}, [2126] = {.lex_state = 17}, [2127] = {.lex_state = 17}, - [2128] = {.lex_state = 31}, - [2129] = {.lex_state = 17}, + [2128] = {.lex_state = 17}, + [2129] = {.lex_state = 24}, [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 17}, + [2131] = {.lex_state = 18}, [2132] = {.lex_state = 17}, [2133] = {.lex_state = 18}, - [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 19}, - [2137] = {.lex_state = 18}, + [2134] = {.lex_state = 31}, + [2135] = {.lex_state = 19}, + [2136] = {.lex_state = 17}, + [2137] = {.lex_state = 19}, [2138] = {.lex_state = 19}, [2139] = {.lex_state = 19}, - [2140] = {.lex_state = 19}, - [2141] = {.lex_state = 18}, - [2142] = {.lex_state = 27}, + [2140] = {.lex_state = 18}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 17}, [2143] = {.lex_state = 17}, - [2144] = {.lex_state = 17}, - [2145] = {.lex_state = 24}, - [2146] = {.lex_state = 31}, - [2147] = {.lex_state = 18}, - [2148] = {.lex_state = 24}, - [2149] = {.lex_state = 18}, - [2150] = {.lex_state = 18}, + [2144] = {.lex_state = 31}, + [2145] = {.lex_state = 31}, + [2146] = {.lex_state = 24}, + [2147] = {.lex_state = 17}, + [2148] = {.lex_state = 17}, + [2149] = {.lex_state = 24}, + [2150] = {.lex_state = 31}, [2151] = {.lex_state = 18}, [2152] = {.lex_state = 17}, - [2153] = {.lex_state = 18}, - [2154] = {.lex_state = 27}, - [2155] = {.lex_state = 31}, - [2156] = {.lex_state = 17}, + [2153] = {.lex_state = 17}, + [2154] = {.lex_state = 17}, + [2155] = {.lex_state = 18}, + [2156] = {.lex_state = 18}, [2157] = {.lex_state = 18}, - [2158] = {.lex_state = 18}, - [2159] = {.lex_state = 31}, - [2160] = {.lex_state = 31}, - [2161] = {.lex_state = 31}, - [2162] = {.lex_state = 31}, - [2163] = {.lex_state = 31}, - [2164] = {.lex_state = 31}, - [2165] = {.lex_state = 31}, - [2166] = {.lex_state = 31}, - [2167] = {.lex_state = 31}, - [2168] = {.lex_state = 31}, - [2169] = {.lex_state = 31}, - [2170] = {.lex_state = 31}, - [2171] = {.lex_state = 31}, - [2172] = {.lex_state = 19}, - [2173] = {.lex_state = 31}, - [2174] = {.lex_state = 27}, + [2158] = {.lex_state = 27}, + [2159] = {.lex_state = 18}, + [2160] = {.lex_state = 18}, + [2161] = {.lex_state = 18}, + [2162] = {.lex_state = 17}, + [2163] = {.lex_state = 18}, + [2164] = {.lex_state = 17}, + [2165] = {.lex_state = 17}, + [2166] = {.lex_state = 27}, + [2167] = {.lex_state = 17}, + [2168] = {.lex_state = 17}, + [2169] = {.lex_state = 17}, + [2170] = {.lex_state = 17}, + [2171] = {.lex_state = 17}, + [2172] = {.lex_state = 17}, + [2173] = {.lex_state = 18}, + [2174] = {.lex_state = 18}, [2175] = {.lex_state = 31}, - [2176] = {.lex_state = 18}, - [2177] = {.lex_state = 31}, + [2176] = {.lex_state = 24}, + [2177] = {.lex_state = 17}, [2178] = {.lex_state = 31}, [2179] = {.lex_state = 31}, [2180] = {.lex_state = 31}, - [2181] = {.lex_state = 18}, - [2182] = {.lex_state = 17}, + [2181] = {.lex_state = 31}, + [2182] = {.lex_state = 31}, [2183] = {.lex_state = 31}, - [2184] = {.lex_state = 18}, + [2184] = {.lex_state = 31}, [2185] = {.lex_state = 31}, [2186] = {.lex_state = 31}, - [2187] = {.lex_state = 12}, + [2187] = {.lex_state = 31}, [2188] = {.lex_state = 31}, [2189] = {.lex_state = 31}, [2190] = {.lex_state = 31}, [2191] = {.lex_state = 31}, [2192] = {.lex_state = 31}, - [2193] = {.lex_state = 18}, - [2194] = {.lex_state = 18}, - [2195] = {.lex_state = 27}, - [2196] = {.lex_state = 31}, - [2197] = {.lex_state = 31}, + [2193] = {.lex_state = 31}, + [2194] = {.lex_state = 31}, + [2195] = {.lex_state = 31}, + [2196] = {.lex_state = 18}, + [2197] = {.lex_state = 18}, [2198] = {.lex_state = 31}, - [2199] = {.lex_state = 18}, - [2200] = {.lex_state = 31}, - [2201] = {.lex_state = 17}, - [2202] = {.lex_state = 31}, - [2203] = {.lex_state = 31}, + [2199] = {.lex_state = 19}, + [2200] = {.lex_state = 17}, + [2201] = {.lex_state = 31}, + [2202] = {.lex_state = 27}, + [2203] = {.lex_state = 27}, [2204] = {.lex_state = 31}, - [2205] = {.lex_state = 27}, - [2206] = {.lex_state = 17}, - [2207] = {.lex_state = 17}, - [2208] = {.lex_state = 31}, - [2209] = {.lex_state = 31}, + [2205] = {.lex_state = 31}, + [2206] = {.lex_state = 18}, + [2207] = {.lex_state = 31}, + [2208] = {.lex_state = 18}, + [2209] = {.lex_state = 17}, [2210] = {.lex_state = 31}, - [2211] = {.lex_state = 27}, - [2212] = {.lex_state = 17}, - [2213] = {.lex_state = 18}, - [2214] = {.lex_state = 27}, - [2215] = {.lex_state = 31}, - [2216] = {.lex_state = 19}, + [2211] = {.lex_state = 31}, + [2212] = {.lex_state = 27}, + [2213] = {.lex_state = 31}, + [2214] = {.lex_state = 31}, + [2215] = {.lex_state = 27}, + [2216] = {.lex_state = 31}, [2217] = {.lex_state = 31}, - [2218] = {.lex_state = 17}, - [2219] = {.lex_state = 17}, + [2218] = {.lex_state = 31}, + [2219] = {.lex_state = 31}, [2220] = {.lex_state = 31}, - [2221] = {.lex_state = 17}, - [2222] = {.lex_state = 17}, - [2223] = {.lex_state = 17}, - [2224] = {.lex_state = 17}, - [2225] = {.lex_state = 17}, - [2226] = {.lex_state = 8}, - [2227] = {.lex_state = 72}, + [2221] = {.lex_state = 31}, + [2222] = {.lex_state = 18}, + [2223] = {.lex_state = 18}, + [2224] = {.lex_state = 12}, + [2225] = {.lex_state = 31}, + [2226] = {.lex_state = 18}, + [2227] = {.lex_state = 31}, [2228] = {.lex_state = 17}, - [2229] = {.lex_state = 17}, - [2230] = {.lex_state = 12}, + [2229] = {.lex_state = 31}, + [2230] = {.lex_state = 31}, [2231] = {.lex_state = 17}, - [2232] = {.lex_state = 31}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 18}, + [2232] = {.lex_state = 19}, + [2233] = {.lex_state = 31}, + [2234] = {.lex_state = 31}, [2235] = {.lex_state = 17}, - [2236] = {.lex_state = 17}, - [2237] = {.lex_state = 31}, - [2238] = {.lex_state = 19}, - [2239] = {.lex_state = 17}, - [2240] = {.lex_state = 19}, - [2241] = {.lex_state = 17}, - [2242] = {.lex_state = 17}, + [2236] = {.lex_state = 8}, + [2237] = {.lex_state = 19}, + [2238] = {.lex_state = 17}, + [2239] = {.lex_state = 31}, + [2240] = {.lex_state = 17}, + [2241] = {.lex_state = 19}, + [2242] = {.lex_state = 8}, [2243] = {.lex_state = 17}, - [2244] = {.lex_state = 12}, + [2244] = {.lex_state = 17}, [2245] = {.lex_state = 17}, [2246] = {.lex_state = 17}, - [2247] = {.lex_state = 8}, - [2248] = {.lex_state = 12}, + [2247] = {.lex_state = 17}, + [2248] = {.lex_state = 17}, [2249] = {.lex_state = 17}, [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 17}, + [2251] = {.lex_state = 19}, [2252] = {.lex_state = 31}, - [2253] = {.lex_state = 31}, - [2254] = {.lex_state = 19}, - [2255] = {.lex_state = 19}, - [2256] = {.lex_state = 31}, - [2257] = {.lex_state = 31}, + [2253] = {.lex_state = 17}, + [2254] = {.lex_state = 17}, + [2255] = {.lex_state = 31}, + [2256] = {.lex_state = 17}, + [2257] = {.lex_state = 17}, [2258] = {.lex_state = 31}, - [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 12}, - [2261] = {.lex_state = 31}, - [2262] = {.lex_state = 8}, + [2259] = {.lex_state = 12}, + [2260] = {.lex_state = 8}, + [2261] = {.lex_state = 17}, + [2262] = {.lex_state = 17}, [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 31}, - [2265] = {.lex_state = 17}, + [2264] = {.lex_state = 17}, + [2265] = {.lex_state = 27}, [2266] = {.lex_state = 17}, - [2267] = {.lex_state = 17}, - [2268] = {.lex_state = 27}, + [2267] = {.lex_state = 31}, + [2268] = {.lex_state = 18}, [2269] = {.lex_state = 17}, - [2270] = {.lex_state = 17}, - [2271] = {.lex_state = 17}, - [2272] = {.lex_state = 27}, + [2270] = {.lex_state = 31}, + [2271] = {.lex_state = 12}, + [2272] = {.lex_state = 17}, [2273] = {.lex_state = 17}, - [2274] = {.lex_state = 17}, - [2275] = {.lex_state = 17}, - [2276] = {.lex_state = 27}, - [2277] = {.lex_state = 17}, - [2278] = {.lex_state = 17}, - [2279] = {.lex_state = 17}, - [2280] = {.lex_state = 27}, + [2274] = {.lex_state = 12}, + [2275] = {.lex_state = 12}, + [2276] = {.lex_state = 17}, + [2277] = {.lex_state = 31}, + [2278] = {.lex_state = 31}, + [2279] = {.lex_state = 72}, + [2280] = {.lex_state = 31}, [2281] = {.lex_state = 17}, - [2282] = {.lex_state = 17}, - [2283] = {.lex_state = 17}, + [2282] = {.lex_state = 31}, + [2283] = {.lex_state = 19}, [2284] = {.lex_state = 17}, - [2285] = {.lex_state = 17}, + [2285] = {.lex_state = 27}, [2286] = {.lex_state = 17}, [2287] = {.lex_state = 17}, [2288] = {.lex_state = 27}, @@ -12684,626 +12729,626 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2292] = {.lex_state = 17}, [2293] = {.lex_state = 17}, [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 27}, - [2296] = {.lex_state = 27}, + [2295] = {.lex_state = 17}, + [2296] = {.lex_state = 24}, [2297] = {.lex_state = 27}, - [2298] = {.lex_state = 17}, + [2298] = {.lex_state = 27}, [2299] = {.lex_state = 17}, [2300] = {.lex_state = 17}, [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 24}, + [2302] = {.lex_state = 17}, [2303] = {.lex_state = 17}, [2304] = {.lex_state = 17}, [2305] = {.lex_state = 17}, [2306] = {.lex_state = 17}, - [2307] = {.lex_state = 17}, - [2308] = {.lex_state = 17}, + [2307] = {.lex_state = 27}, + [2308] = {.lex_state = 27}, [2309] = {.lex_state = 17}, [2310] = {.lex_state = 17}, - [2311] = {.lex_state = 27}, - [2312] = {.lex_state = 27}, + [2311] = {.lex_state = 12}, + [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, - [2314] = {.lex_state = 27}, + [2314] = {.lex_state = 17}, [2315] = {.lex_state = 17}, [2316] = {.lex_state = 27}, [2317] = {.lex_state = 17}, - [2318] = {.lex_state = 12}, - [2319] = {.lex_state = 72}, - [2320] = {.lex_state = 72}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 17}, + [2320] = {.lex_state = 17}, [2321] = {.lex_state = 17}, - [2322] = {.lex_state = 72}, - [2323] = {.lex_state = 5}, - [2324] = {.lex_state = 27}, - [2325] = {.lex_state = 5}, - [2326] = {.lex_state = 12}, - [2327] = {.lex_state = 72}, - [2328] = {.lex_state = 12}, - [2329] = {.lex_state = 72}, - [2330] = {.lex_state = 27}, - [2331] = {.lex_state = 17}, + [2322] = {.lex_state = 27}, + [2323] = {.lex_state = 27}, + [2324] = {.lex_state = 17}, + [2325] = {.lex_state = 27}, + [2326] = {.lex_state = 17}, + [2327] = {.lex_state = 17}, + [2328] = {.lex_state = 17}, + [2329] = {.lex_state = 27}, + [2330] = {.lex_state = 17}, + [2331] = {.lex_state = 27}, [2332] = {.lex_state = 17}, - [2333] = {.lex_state = 72}, - [2334] = {.lex_state = 72}, - [2335] = {.lex_state = 5}, - [2336] = {.lex_state = 72}, - [2337] = {.lex_state = 72}, - [2338] = {.lex_state = 17}, + [2333] = {.lex_state = 17}, + [2334] = {.lex_state = 17}, + [2335] = {.lex_state = 17}, + [2336] = {.lex_state = 17}, + [2337] = {.lex_state = 17}, + [2338] = {.lex_state = 72}, [2339] = {.lex_state = 72}, - [2340] = {.lex_state = 12}, - [2341] = {.lex_state = 169}, + [2340] = {.lex_state = 31}, + [2341] = {.lex_state = 72}, [2342] = {.lex_state = 72}, - [2343] = {.lex_state = 31}, - [2344] = {.lex_state = 17}, + [2343] = {.lex_state = 19}, + [2344] = {.lex_state = 72}, [2345] = {.lex_state = 72}, [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 72}, + [2347] = {.lex_state = 17}, [2348] = {.lex_state = 27}, - [2349] = {.lex_state = 27}, + [2349] = {.lex_state = 17}, [2350] = {.lex_state = 27}, - [2351] = {.lex_state = 27}, + [2351] = {.lex_state = 72}, [2352] = {.lex_state = 72}, [2353] = {.lex_state = 72}, [2354] = {.lex_state = 72}, - [2355] = {.lex_state = 17}, - [2356] = {.lex_state = 19}, - [2357] = {.lex_state = 17}, - [2358] = {.lex_state = 72}, - [2359] = {.lex_state = 72}, - [2360] = {.lex_state = 72}, - [2361] = {.lex_state = 27}, - [2362] = {.lex_state = 27}, - [2363] = {.lex_state = 72}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 5}, + [2357] = {.lex_state = 5}, + [2358] = {.lex_state = 12}, + [2359] = {.lex_state = 12}, + [2360] = {.lex_state = 17}, + [2361] = {.lex_state = 17}, + [2362] = {.lex_state = 72}, + [2363] = {.lex_state = 17}, [2364] = {.lex_state = 72}, [2365] = {.lex_state = 72}, [2366] = {.lex_state = 17}, - [2367] = {.lex_state = 72}, + [2367] = {.lex_state = 31}, [2368] = {.lex_state = 72}, - [2369] = {.lex_state = 72}, + [2369] = {.lex_state = 27}, [2370] = {.lex_state = 17}, - [2371] = {.lex_state = 72}, - [2372] = {.lex_state = 72}, - [2373] = {.lex_state = 72}, - [2374] = {.lex_state = 17}, - [2375] = {.lex_state = 72}, - [2376] = {.lex_state = 31}, - [2377] = {.lex_state = 17}, - [2378] = {.lex_state = 31}, - [2379] = {.lex_state = 17}, - [2380] = {.lex_state = 19}, - [2381] = {.lex_state = 19}, - [2382] = {.lex_state = 19}, - [2383] = {.lex_state = 19}, - [2384] = {.lex_state = 72}, - [2385] = {.lex_state = 19}, - [2386] = {.lex_state = 31}, + [2371] = {.lex_state = 27}, + [2372] = {.lex_state = 17}, + [2373] = {.lex_state = 17}, + [2374] = {.lex_state = 72}, + [2375] = {.lex_state = 27}, + [2376] = {.lex_state = 169}, + [2377] = {.lex_state = 12}, + [2378] = {.lex_state = 72}, + [2379] = {.lex_state = 72}, + [2380] = {.lex_state = 72}, + [2381] = {.lex_state = 27}, + [2382] = {.lex_state = 72}, + [2383] = {.lex_state = 27}, + [2384] = {.lex_state = 17}, + [2385] = {.lex_state = 72}, + [2386] = {.lex_state = 17}, [2387] = {.lex_state = 72}, - [2388] = {.lex_state = 27}, - [2389] = {.lex_state = 31}, - [2390] = {.lex_state = 17}, + [2388] = {.lex_state = 17}, + [2389] = {.lex_state = 5}, + [2390] = {.lex_state = 72}, [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 17}, - [2393] = {.lex_state = 19}, - [2394] = {.lex_state = 17}, - [2395] = {.lex_state = 5}, - [2396] = {.lex_state = 20}, - [2397] = {.lex_state = 31}, + [2392] = {.lex_state = 27}, + [2393] = {.lex_state = 72}, + [2394] = {.lex_state = 72}, + [2395] = {.lex_state = 72}, + [2396] = {.lex_state = 72}, + [2397] = {.lex_state = 17}, [2398] = {.lex_state = 17}, - [2399] = {.lex_state = 17}, - [2400] = {.lex_state = 17}, - [2401] = {.lex_state = 31}, - [2402] = {.lex_state = 17}, + [2399] = {.lex_state = 72}, + [2400] = {.lex_state = 72}, + [2401] = {.lex_state = 17}, + [2402] = {.lex_state = 31}, [2403] = {.lex_state = 17}, - [2404] = {.lex_state = 17}, - [2405] = {.lex_state = 17}, - [2406] = {.lex_state = 20}, - [2407] = {.lex_state = 31}, - [2408] = {.lex_state = 20}, - [2409] = {.lex_state = 17}, - [2410] = {.lex_state = 17}, - [2411] = {.lex_state = 17}, + [2404] = {.lex_state = 31}, + [2405] = {.lex_state = 31}, + [2406] = {.lex_state = 23}, + [2407] = {.lex_state = 17}, + [2408] = {.lex_state = 19}, + [2409] = {.lex_state = 31}, + [2410] = {.lex_state = 20}, + [2411] = {.lex_state = 31}, [2412] = {.lex_state = 17}, [2413] = {.lex_state = 17}, [2414] = {.lex_state = 20}, - [2415] = {.lex_state = 31}, - [2416] = {.lex_state = 31}, + [2415] = {.lex_state = 17}, + [2416] = {.lex_state = 17}, [2417] = {.lex_state = 17}, [2418] = {.lex_state = 17}, [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 17}, + [2420] = {.lex_state = 23}, [2421] = {.lex_state = 17}, [2422] = {.lex_state = 17}, [2423] = {.lex_state = 17}, [2424] = {.lex_state = 17}, [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 17}, + [2426] = {.lex_state = 31}, [2427] = {.lex_state = 17}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 31}, + [2429] = {.lex_state = 17}, [2430] = {.lex_state = 17}, - [2431] = {.lex_state = 31}, - [2432] = {.lex_state = 31}, - [2433] = {.lex_state = 17}, + [2431] = {.lex_state = 17}, + [2432] = {.lex_state = 17}, + [2433] = {.lex_state = 20}, [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 5}, - [2436] = {.lex_state = 31}, - [2437] = {.lex_state = 17}, - [2438] = {.lex_state = 31}, - [2439] = {.lex_state = 31}, + [2435] = {.lex_state = 72}, + [2436] = {.lex_state = 17}, + [2437] = {.lex_state = 31}, + [2438] = {.lex_state = 17}, + [2439] = {.lex_state = 17}, [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 17}, - [2442] = {.lex_state = 17}, + [2441] = {.lex_state = 23}, + [2442] = {.lex_state = 31}, [2443] = {.lex_state = 17}, [2444] = {.lex_state = 17}, - [2445] = {.lex_state = 17}, + [2445] = {.lex_state = 31}, [2446] = {.lex_state = 17}, - [2447] = {.lex_state = 19}, - [2448] = {.lex_state = 15}, - [2449] = {.lex_state = 17}, - [2450] = {.lex_state = 17}, - [2451] = {.lex_state = 15}, - [2452] = {.lex_state = 17}, - [2453] = {.lex_state = 20}, - [2454] = {.lex_state = 17}, + [2447] = {.lex_state = 17}, + [2448] = {.lex_state = 17}, + [2449] = {.lex_state = 19}, + [2450] = {.lex_state = 27}, + [2451] = {.lex_state = 5}, + [2452] = {.lex_state = 5}, + [2453] = {.lex_state = 5}, + [2454] = {.lex_state = 31}, [2455] = {.lex_state = 17}, - [2456] = {.lex_state = 17}, - [2457] = {.lex_state = 17}, - [2458] = {.lex_state = 5}, - [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 5}, - [2461] = {.lex_state = 31}, + [2456] = {.lex_state = 31}, + [2457] = {.lex_state = 20}, + [2458] = {.lex_state = 17}, + [2459] = {.lex_state = 5}, + [2460] = {.lex_state = 31}, + [2461] = {.lex_state = 17}, [2462] = {.lex_state = 17}, [2463] = {.lex_state = 17}, - [2464] = {.lex_state = 31}, - [2465] = {.lex_state = 17}, - [2466] = {.lex_state = 17}, + [2464] = {.lex_state = 19}, + [2465] = {.lex_state = 19}, + [2466] = {.lex_state = 19}, [2467] = {.lex_state = 17}, - [2468] = {.lex_state = 17}, - [2469] = {.lex_state = 17}, - [2470] = {.lex_state = 17}, + [2468] = {.lex_state = 19}, + [2469] = {.lex_state = 23}, + [2470] = {.lex_state = 31}, [2471] = {.lex_state = 17}, [2472] = {.lex_state = 17}, - [2473] = {.lex_state = 20}, + [2473] = {.lex_state = 17}, [2474] = {.lex_state = 17}, - [2475] = {.lex_state = 17}, - [2476] = {.lex_state = 31}, + [2475] = {.lex_state = 19}, + [2476] = {.lex_state = 17}, [2477] = {.lex_state = 17}, [2478] = {.lex_state = 17}, - [2479] = {.lex_state = 23}, - [2480] = {.lex_state = 23}, - [2481] = {.lex_state = 23}, - [2482] = {.lex_state = 8}, - [2483] = {.lex_state = 23, .external_lex_state = 3}, + [2479] = {.lex_state = 17}, + [2480] = {.lex_state = 17}, + [2481] = {.lex_state = 72}, + [2482] = {.lex_state = 15}, + [2483] = {.lex_state = 17}, [2484] = {.lex_state = 17}, [2485] = {.lex_state = 23}, [2486] = {.lex_state = 17}, [2487] = {.lex_state = 17}, [2488] = {.lex_state = 17}, - [2489] = {.lex_state = 31}, - [2490] = {.lex_state = 17}, + [2489] = {.lex_state = 17}, + [2490] = {.lex_state = 31}, [2491] = {.lex_state = 17}, - [2492] = {.lex_state = 31}, - [2493] = {.lex_state = 19}, - [2494] = {.lex_state = 8}, - [2495] = {.lex_state = 17}, - [2496] = {.lex_state = 31}, - [2497] = {.lex_state = 19}, + [2492] = {.lex_state = 17}, + [2493] = {.lex_state = 23}, + [2494] = {.lex_state = 31}, + [2495] = {.lex_state = 20}, + [2496] = {.lex_state = 17}, + [2497] = {.lex_state = 15}, [2498] = {.lex_state = 31}, - [2499] = {.lex_state = 19}, - [2500] = {.lex_state = 31}, - [2501] = {.lex_state = 23}, - [2502] = {.lex_state = 31}, - [2503] = {.lex_state = 31}, - [2504] = {.lex_state = 23}, + [2499] = {.lex_state = 17}, + [2500] = {.lex_state = 17}, + [2501] = {.lex_state = 31}, + [2502] = {.lex_state = 17}, + [2503] = {.lex_state = 17}, + [2504] = {.lex_state = 20}, [2505] = {.lex_state = 17}, [2506] = {.lex_state = 17}, - [2507] = {.lex_state = 31}, - [2508] = {.lex_state = 31}, + [2507] = {.lex_state = 17}, + [2508] = {.lex_state = 23}, [2509] = {.lex_state = 31}, - [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 72}, - [2512] = {.lex_state = 31}, + [2510] = {.lex_state = 23}, + [2511] = {.lex_state = 31}, + [2512] = {.lex_state = 23}, [2513] = {.lex_state = 17}, [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 31}, - [2516] = {.lex_state = 31}, + [2515] = {.lex_state = 5}, + [2516] = {.lex_state = 23}, [2517] = {.lex_state = 23}, - [2518] = {.lex_state = 31}, + [2518] = {.lex_state = 17}, [2519] = {.lex_state = 23}, - [2520] = {.lex_state = 17}, - [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 72}, + [2520] = {.lex_state = 23}, + [2521] = {.lex_state = 23}, + [2522] = {.lex_state = 17}, [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 17}, + [2524] = {.lex_state = 23}, [2525] = {.lex_state = 23}, [2526] = {.lex_state = 31}, - [2527] = {.lex_state = 31}, - [2528] = {.lex_state = 17}, + [2527] = {.lex_state = 17}, + [2528] = {.lex_state = 31}, [2529] = {.lex_state = 17}, - [2530] = {.lex_state = 23}, - [2531] = {.lex_state = 5}, - [2532] = {.lex_state = 23}, - [2533] = {.lex_state = 23}, - [2534] = {.lex_state = 19}, + [2530] = {.lex_state = 17}, + [2531] = {.lex_state = 17}, + [2532] = {.lex_state = 8}, + [2533] = {.lex_state = 17}, + [2534] = {.lex_state = 31}, [2535] = {.lex_state = 17}, - [2536] = {.lex_state = 17}, - [2537] = {.lex_state = 8}, - [2538] = {.lex_state = 17}, + [2536] = {.lex_state = 31}, + [2537] = {.lex_state = 17}, + [2538] = {.lex_state = 8}, [2539] = {.lex_state = 31}, - [2540] = {.lex_state = 17}, - [2541] = {.lex_state = 23}, - [2542] = {.lex_state = 31}, + [2540] = {.lex_state = 31}, + [2541] = {.lex_state = 17}, + [2542] = {.lex_state = 8}, [2543] = {.lex_state = 17}, - [2544] = {.lex_state = 23}, + [2544] = {.lex_state = 31}, [2545] = {.lex_state = 23}, - [2546] = {.lex_state = 17}, + [2546] = {.lex_state = 31}, [2547] = {.lex_state = 31}, - [2548] = {.lex_state = 31}, - [2549] = {.lex_state = 17}, - [2550] = {.lex_state = 31}, + [2548] = {.lex_state = 23}, + [2549] = {.lex_state = 31}, + [2550] = {.lex_state = 17}, [2551] = {.lex_state = 17}, [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 23}, - [2554] = {.lex_state = 5}, - [2555] = {.lex_state = 31}, - [2556] = {.lex_state = 31}, - [2557] = {.lex_state = 31}, + [2553] = {.lex_state = 31}, + [2554] = {.lex_state = 17}, + [2555] = {.lex_state = 17}, + [2556] = {.lex_state = 23}, + [2557] = {.lex_state = 23}, [2558] = {.lex_state = 23}, - [2559] = {.lex_state = 23}, - [2560] = {.lex_state = 23}, + [2559] = {.lex_state = 17}, + [2560] = {.lex_state = 31}, [2561] = {.lex_state = 17}, - [2562] = {.lex_state = 31}, - [2563] = {.lex_state = 8}, - [2564] = {.lex_state = 31}, - [2565] = {.lex_state = 31}, - [2566] = {.lex_state = 23}, - [2567] = {.lex_state = 31}, - [2568] = {.lex_state = 23}, - [2569] = {.lex_state = 23}, - [2570] = {.lex_state = 19}, - [2571] = {.lex_state = 17}, - [2572] = {.lex_state = 17}, - [2573] = {.lex_state = 23}, - [2574] = {.lex_state = 23}, - [2575] = {.lex_state = 17}, - [2576] = {.lex_state = 17}, - [2577] = {.lex_state = 17}, - [2578] = {.lex_state = 31}, - [2579] = {.lex_state = 17}, - [2580] = {.lex_state = 23}, - [2581] = {.lex_state = 23}, - [2582] = {.lex_state = 19}, - [2583] = {.lex_state = 8}, - [2584] = {.lex_state = 17}, - [2585] = {.lex_state = 23}, + [2562] = {.lex_state = 17}, + [2563] = {.lex_state = 17}, + [2564] = {.lex_state = 19}, + [2565] = {.lex_state = 23}, + [2566] = {.lex_state = 31}, + [2567] = {.lex_state = 23}, + [2568] = {.lex_state = 31}, + [2569] = {.lex_state = 17}, + [2570] = {.lex_state = 23}, + [2571] = {.lex_state = 23}, + [2572] = {.lex_state = 31}, + [2573] = {.lex_state = 8}, + [2574] = {.lex_state = 17}, + [2575] = {.lex_state = 19}, + [2576] = {.lex_state = 31}, + [2577] = {.lex_state = 5}, + [2578] = {.lex_state = 23}, + [2579] = {.lex_state = 31}, + [2580] = {.lex_state = 17}, + [2581] = {.lex_state = 72}, + [2582] = {.lex_state = 23}, + [2583] = {.lex_state = 23}, + [2584] = {.lex_state = 19}, + [2585] = {.lex_state = 31}, [2586] = {.lex_state = 23}, - [2587] = {.lex_state = 23}, - [2588] = {.lex_state = 17}, - [2589] = {.lex_state = 17}, - [2590] = {.lex_state = 19}, - [2591] = {.lex_state = 17}, + [2587] = {.lex_state = 31}, + [2588] = {.lex_state = 72}, + [2589] = {.lex_state = 31}, + [2590] = {.lex_state = 23}, + [2591] = {.lex_state = 31}, [2592] = {.lex_state = 17}, - [2593] = {.lex_state = 17}, + [2593] = {.lex_state = 23}, [2594] = {.lex_state = 17}, - [2595] = {.lex_state = 17}, - [2596] = {.lex_state = 17}, - [2597] = {.lex_state = 17}, - [2598] = {.lex_state = 72}, - [2599] = {.lex_state = 8}, + [2595] = {.lex_state = 23}, + [2596] = {.lex_state = 31}, + [2597] = {.lex_state = 31}, + [2598] = {.lex_state = 19}, + [2599] = {.lex_state = 23, .external_lex_state = 3}, [2600] = {.lex_state = 23}, - [2601] = {.lex_state = 72}, + [2601] = {.lex_state = 19}, [2602] = {.lex_state = 17}, - [2603] = {.lex_state = 23}, - [2604] = {.lex_state = 33}, - [2605] = {.lex_state = 23, .external_lex_state = 4}, - [2606] = {.lex_state = 72}, - [2607] = {.lex_state = 72}, - [2608] = {.lex_state = 17}, - [2609] = {.lex_state = 17}, + [2603] = {.lex_state = 31}, + [2604] = {.lex_state = 23}, + [2605] = {.lex_state = 19}, + [2606] = {.lex_state = 23}, + [2607] = {.lex_state = 17}, + [2608] = {.lex_state = 31}, + [2609] = {.lex_state = 23}, [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 17}, - [2612] = {.lex_state = 17}, - [2613] = {.lex_state = 23}, + [2611] = {.lex_state = 31}, + [2612] = {.lex_state = 31}, + [2613] = {.lex_state = 17}, [2614] = {.lex_state = 17}, - [2615] = {.lex_state = 17}, - [2616] = {.lex_state = 17}, - [2617] = {.lex_state = 17}, + [2615] = {.lex_state = 31}, + [2616] = {.lex_state = 8}, + [2617] = {.lex_state = 8}, [2618] = {.lex_state = 23}, - [2619] = {.lex_state = 23, .external_lex_state = 4}, + [2619] = {.lex_state = 17}, [2620] = {.lex_state = 17}, - [2621] = {.lex_state = 17}, - [2622] = {.lex_state = 23}, - [2623] = {.lex_state = 31}, + [2621] = {.lex_state = 8}, + [2622] = {.lex_state = 17}, + [2623] = {.lex_state = 72}, [2624] = {.lex_state = 23}, - [2625] = {.lex_state = 8}, - [2626] = {.lex_state = 8}, - [2627] = {.lex_state = 72}, - [2628] = {.lex_state = 23}, - [2629] = {.lex_state = 17}, - [2630] = {.lex_state = 72}, - [2631] = {.lex_state = 17}, - [2632] = {.lex_state = 17}, - [2633] = {.lex_state = 23}, - [2634] = {.lex_state = 72}, - [2635] = {.lex_state = 31}, - [2636] = {.lex_state = 5}, - [2637] = {.lex_state = 31}, + [2625] = {.lex_state = 23}, + [2626] = {.lex_state = 72}, + [2627] = {.lex_state = 23}, + [2628] = {.lex_state = 23, .external_lex_state = 4}, + [2629] = {.lex_state = 72}, + [2630] = {.lex_state = 23}, + [2631] = {.lex_state = 8}, + [2632] = {.lex_state = 8}, + [2633] = {.lex_state = 8}, + [2634] = {.lex_state = 8}, + [2635] = {.lex_state = 23, .external_lex_state = 4}, + [2636] = {.lex_state = 17}, + [2637] = {.lex_state = 23}, [2638] = {.lex_state = 17}, - [2639] = {.lex_state = 17}, - [2640] = {.lex_state = 18}, - [2641] = {.lex_state = 17}, - [2642] = {.lex_state = 23}, + [2639] = {.lex_state = 23}, + [2640] = {.lex_state = 17}, + [2641] = {.lex_state = 23}, + [2642] = {.lex_state = 23, .external_lex_state = 4}, [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 17}, - [2645] = {.lex_state = 17}, - [2646] = {.lex_state = 23}, - [2647] = {.lex_state = 72}, - [2648] = {.lex_state = 23, .external_lex_state = 4}, + [2644] = {.lex_state = 23}, + [2645] = {.lex_state = 23}, + [2646] = {.lex_state = 17}, + [2647] = {.lex_state = 5}, + [2648] = {.lex_state = 17}, [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 23}, - [2651] = {.lex_state = 23}, - [2652] = {.lex_state = 72}, - [2653] = {.lex_state = 31}, - [2654] = {.lex_state = 17}, + [2650] = {.lex_state = 23, .external_lex_state = 4}, + [2651] = {.lex_state = 17}, + [2652] = {.lex_state = 23}, + [2653] = {.lex_state = 17}, + [2654] = {.lex_state = 23}, [2655] = {.lex_state = 72}, - [2656] = {.lex_state = 31}, - [2657] = {.lex_state = 23}, - [2658] = {.lex_state = 72}, - [2659] = {.lex_state = 23, .external_lex_state = 4}, - [2660] = {.lex_state = 23}, - [2661] = {.lex_state = 23}, - [2662] = {.lex_state = 23, .external_lex_state = 4}, - [2663] = {.lex_state = 23}, - [2664] = {.lex_state = 23}, + [2656] = {.lex_state = 72}, + [2657] = {.lex_state = 72}, + [2658] = {.lex_state = 23, .external_lex_state = 4}, + [2659] = {.lex_state = 72}, + [2660] = {.lex_state = 72}, + [2661] = {.lex_state = 8}, + [2662] = {.lex_state = 8}, + [2663] = {.lex_state = 8}, + [2664] = {.lex_state = 8}, [2665] = {.lex_state = 23}, - [2666] = {.lex_state = 72}, - [2667] = {.lex_state = 18}, - [2668] = {.lex_state = 8}, - [2669] = {.lex_state = 23}, - [2670] = {.lex_state = 23}, + [2666] = {.lex_state = 17}, + [2667] = {.lex_state = 17}, + [2668] = {.lex_state = 17}, + [2669] = {.lex_state = 8}, + [2670] = {.lex_state = 72}, [2671] = {.lex_state = 72}, - [2672] = {.lex_state = 23}, - [2673] = {.lex_state = 23}, - [2674] = {.lex_state = 17}, - [2675] = {.lex_state = 23}, + [2672] = {.lex_state = 72}, + [2673] = {.lex_state = 23, .external_lex_state = 4}, + [2674] = {.lex_state = 31}, + [2675] = {.lex_state = 8}, [2676] = {.lex_state = 23, .external_lex_state = 4}, - [2677] = {.lex_state = 72}, + [2677] = {.lex_state = 8}, [2678] = {.lex_state = 8}, [2679] = {.lex_state = 8}, - [2680] = {.lex_state = 8}, - [2681] = {.lex_state = 8}, - [2682] = {.lex_state = 72}, - [2683] = {.lex_state = 31}, - [2684] = {.lex_state = 8}, - [2685] = {.lex_state = 72}, + [2680] = {.lex_state = 72}, + [2681] = {.lex_state = 72}, + [2682] = {.lex_state = 17}, + [2683] = {.lex_state = 18}, + [2684] = {.lex_state = 23}, + [2685] = {.lex_state = 23}, [2686] = {.lex_state = 8}, - [2687] = {.lex_state = 8}, + [2687] = {.lex_state = 31}, [2688] = {.lex_state = 8}, - [2689] = {.lex_state = 31}, - [2690] = {.lex_state = 23}, - [2691] = {.lex_state = 23}, - [2692] = {.lex_state = 72}, - [2693] = {.lex_state = 72}, - [2694] = {.lex_state = 72}, + [2689] = {.lex_state = 8}, + [2690] = {.lex_state = 19}, + [2691] = {.lex_state = 8}, + [2692] = {.lex_state = 8}, + [2693] = {.lex_state = 23}, + [2694] = {.lex_state = 23}, [2695] = {.lex_state = 72}, - [2696] = {.lex_state = 23}, - [2697] = {.lex_state = 72}, + [2696] = {.lex_state = 72}, + [2697] = {.lex_state = 8}, [2698] = {.lex_state = 17}, - [2699] = {.lex_state = 17}, - [2700] = {.lex_state = 17}, + [2699] = {.lex_state = 23}, + [2700] = {.lex_state = 8}, [2701] = {.lex_state = 8}, - [2702] = {.lex_state = 8}, - [2703] = {.lex_state = 17}, - [2704] = {.lex_state = 17}, - [2705] = {.lex_state = 72}, - [2706] = {.lex_state = 23}, - [2707] = {.lex_state = 23}, - [2708] = {.lex_state = 23}, - [2709] = {.lex_state = 23, .external_lex_state = 4}, - [2710] = {.lex_state = 23}, - [2711] = {.lex_state = 23}, - [2712] = {.lex_state = 72}, + [2702] = {.lex_state = 23}, + [2703] = {.lex_state = 23}, + [2704] = {.lex_state = 5}, + [2705] = {.lex_state = 8}, + [2706] = {.lex_state = 17}, + [2707] = {.lex_state = 72}, + [2708] = {.lex_state = 72}, + [2709] = {.lex_state = 72}, + [2710] = {.lex_state = 17}, + [2711] = {.lex_state = 17}, + [2712] = {.lex_state = 17}, [2713] = {.lex_state = 23}, - [2714] = {.lex_state = 23}, - [2715] = {.lex_state = 23}, - [2716] = {.lex_state = 23, .external_lex_state = 4}, + [2714] = {.lex_state = 23, .external_lex_state = 4}, + [2715] = {.lex_state = 17}, + [2716] = {.lex_state = 23}, [2717] = {.lex_state = 72}, - [2718] = {.lex_state = 8}, - [2719] = {.lex_state = 8}, - [2720] = {.lex_state = 8}, - [2721] = {.lex_state = 8}, - [2722] = {.lex_state = 8}, - [2723] = {.lex_state = 23}, - [2724] = {.lex_state = 72}, + [2718] = {.lex_state = 17}, + [2719] = {.lex_state = 17}, + [2720] = {.lex_state = 23, .external_lex_state = 4}, + [2721] = {.lex_state = 72}, + [2722] = {.lex_state = 17}, + [2723] = {.lex_state = 8}, + [2724] = {.lex_state = 23, .external_lex_state = 4}, [2725] = {.lex_state = 31}, - [2726] = {.lex_state = 23}, - [2727] = {.lex_state = 19}, - [2728] = {.lex_state = 19}, - [2729] = {.lex_state = 23, .external_lex_state = 4}, - [2730] = {.lex_state = 23}, - [2731] = {.lex_state = 72}, + [2726] = {.lex_state = 8}, + [2727] = {.lex_state = 17}, + [2728] = {.lex_state = 23, .external_lex_state = 4}, + [2729] = {.lex_state = 8}, + [2730] = {.lex_state = 8}, + [2731] = {.lex_state = 23}, [2732] = {.lex_state = 72}, - [2733] = {.lex_state = 23, .external_lex_state = 4}, - [2734] = {.lex_state = 72}, - [2735] = {.lex_state = 23}, - [2736] = {.lex_state = 8}, - [2737] = {.lex_state = 8}, - [2738] = {.lex_state = 8}, + [2733] = {.lex_state = 33}, + [2734] = {.lex_state = 33}, + [2735] = {.lex_state = 8}, + [2736] = {.lex_state = 72}, + [2737] = {.lex_state = 17}, + [2738] = {.lex_state = 72}, [2739] = {.lex_state = 8}, - [2740] = {.lex_state = 8}, + [2740] = {.lex_state = 17}, [2741] = {.lex_state = 17}, - [2742] = {.lex_state = 23, .external_lex_state = 4}, - [2743] = {.lex_state = 23, .external_lex_state = 4}, - [2744] = {.lex_state = 8}, - [2745] = {.lex_state = 8}, - [2746] = {.lex_state = 17}, - [2747] = {.lex_state = 72}, - [2748] = {.lex_state = 17}, - [2749] = {.lex_state = 8}, - [2750] = {.lex_state = 33}, - [2751] = {.lex_state = 8}, - [2752] = {.lex_state = 23}, - [2753] = {.lex_state = 19}, - [2754] = {.lex_state = 19}, - [2755] = {.lex_state = 8}, - [2756] = {.lex_state = 8}, - [2757] = {.lex_state = 23}, - [2758] = {.lex_state = 17}, - [2759] = {.lex_state = 17}, - [2760] = {.lex_state = 23, .external_lex_state = 4}, - [2761] = {.lex_state = 17}, + [2742] = {.lex_state = 72}, + [2743] = {.lex_state = 17}, + [2744] = {.lex_state = 17}, + [2745] = {.lex_state = 31}, + [2746] = {.lex_state = 72}, + [2747] = {.lex_state = 17}, + [2748] = {.lex_state = 72}, + [2749] = {.lex_state = 17}, + [2750] = {.lex_state = 8}, + [2751] = {.lex_state = 31}, + [2752] = {.lex_state = 19}, + [2753] = {.lex_state = 8}, + [2754] = {.lex_state = 23}, + [2755] = {.lex_state = 31}, + [2756] = {.lex_state = 72}, + [2757] = {.lex_state = 33}, + [2758] = {.lex_state = 8}, + [2759] = {.lex_state = 72}, + [2760] = {.lex_state = 17}, + [2761] = {.lex_state = 23}, [2762] = {.lex_state = 72}, - [2763] = {.lex_state = 5}, + [2763] = {.lex_state = 23}, [2764] = {.lex_state = 8}, - [2765] = {.lex_state = 72}, - [2766] = {.lex_state = 8}, - [2767] = {.lex_state = 33}, - [2768] = {.lex_state = 17}, - [2769] = {.lex_state = 17}, - [2770] = {.lex_state = 19}, - [2771] = {.lex_state = 19}, - [2772] = {.lex_state = 19}, - [2773] = {.lex_state = 5}, - [2774] = {.lex_state = 19}, - [2775] = {.lex_state = 72}, - [2776] = {.lex_state = 23}, + [2765] = {.lex_state = 8}, + [2766] = {.lex_state = 17}, + [2767] = {.lex_state = 72}, + [2768] = {.lex_state = 23}, + [2769] = {.lex_state = 31}, + [2770] = {.lex_state = 8}, + [2771] = {.lex_state = 23}, + [2772] = {.lex_state = 23, .external_lex_state = 4}, + [2773] = {.lex_state = 33}, + [2774] = {.lex_state = 23}, + [2775] = {.lex_state = 23}, + [2776] = {.lex_state = 72}, [2777] = {.lex_state = 8}, - [2778] = {.lex_state = 17}, + [2778] = {.lex_state = 23}, [2779] = {.lex_state = 72}, - [2780] = {.lex_state = 8}, - [2781] = {.lex_state = 72}, - [2782] = {.lex_state = 17}, - [2783] = {.lex_state = 8}, - [2784] = {.lex_state = 17}, - [2785] = {.lex_state = 23}, - [2786] = {.lex_state = 23}, + [2780] = {.lex_state = 17}, + [2781] = {.lex_state = 23}, + [2782] = {.lex_state = 72}, + [2783] = {.lex_state = 19}, + [2784] = {.lex_state = 23}, + [2785] = {.lex_state = 19}, + [2786] = {.lex_state = 72}, [2787] = {.lex_state = 23}, [2788] = {.lex_state = 23}, - [2789] = {.lex_state = 8}, - [2790] = {.lex_state = 8}, - [2791] = {.lex_state = 72}, - [2792] = {.lex_state = 31}, - [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 8}, - [2795] = {.lex_state = 31}, - [2796] = {.lex_state = 23}, + [2789] = {.lex_state = 18}, + [2790] = {.lex_state = 19}, + [2791] = {.lex_state = 17}, + [2792] = {.lex_state = 72}, + [2793] = {.lex_state = 72}, + [2794] = {.lex_state = 17}, + [2795] = {.lex_state = 23}, + [2796] = {.lex_state = 31}, [2797] = {.lex_state = 23}, - [2798] = {.lex_state = 8}, - [2799] = {.lex_state = 23}, + [2798] = {.lex_state = 23}, + [2799] = {.lex_state = 17}, [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 72}, - [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 23}, - [2804] = {.lex_state = 23}, - [2805] = {.lex_state = 23}, - [2806] = {.lex_state = 72}, + [2801] = {.lex_state = 18}, + [2802] = {.lex_state = 72}, + [2803] = {.lex_state = 18}, + [2804] = {.lex_state = 72}, + [2805] = {.lex_state = 17}, + [2806] = {.lex_state = 5}, [2807] = {.lex_state = 17}, - [2808] = {.lex_state = 23}, + [2808] = {.lex_state = 19}, [2809] = {.lex_state = 23}, - [2810] = {.lex_state = 23}, - [2811] = {.lex_state = 23}, - [2812] = {.lex_state = 18}, - [2813] = {.lex_state = 18}, - [2814] = {.lex_state = 23}, - [2815] = {.lex_state = 72}, - [2816] = {.lex_state = 5}, - [2817] = {.lex_state = 31}, - [2818] = {.lex_state = 72}, - [2819] = {.lex_state = 17}, + [2810] = {.lex_state = 17}, + [2811] = {.lex_state = 19}, + [2812] = {.lex_state = 19}, + [2813] = {.lex_state = 31}, + [2814] = {.lex_state = 8}, + [2815] = {.lex_state = 17}, + [2816] = {.lex_state = 19}, + [2817] = {.lex_state = 5}, + [2818] = {.lex_state = 8}, + [2819] = {.lex_state = 23}, [2820] = {.lex_state = 17}, - [2821] = {.lex_state = 33}, - [2822] = {.lex_state = 8}, - [2823] = {.lex_state = 8}, - [2824] = {.lex_state = 5}, + [2821] = {.lex_state = 23}, + [2822] = {.lex_state = 23}, + [2823] = {.lex_state = 17}, + [2824] = {.lex_state = 72}, [2825] = {.lex_state = 17}, - [2826] = {.lex_state = 72}, - [2827] = {.lex_state = 8}, - [2828] = {.lex_state = 17}, - [2829] = {.lex_state = 72}, - [2830] = {.lex_state = 72}, - [2831] = {.lex_state = 8}, + [2826] = {.lex_state = 17}, + [2827] = {.lex_state = 19}, + [2828] = {.lex_state = 72}, + [2829] = {.lex_state = 5}, + [2830] = {.lex_state = 19}, + [2831] = {.lex_state = 17}, [2832] = {.lex_state = 17}, - [2833] = {.lex_state = 19}, - [2834] = {.lex_state = 17}, - [2835] = {.lex_state = 8}, - [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 72}, + [2833] = {.lex_state = 17}, + [2834] = {.lex_state = 72}, + [2835] = {.lex_state = 23}, + [2836] = {.lex_state = 19}, + [2837] = {.lex_state = 17}, [2838] = {.lex_state = 8}, [2839] = {.lex_state = 72}, [2840] = {.lex_state = 17}, - [2841] = {.lex_state = 19}, - [2842] = {.lex_state = 19}, - [2843] = {.lex_state = 8}, + [2841] = {.lex_state = 17}, + [2842] = {.lex_state = 18}, + [2843] = {.lex_state = 23}, [2844] = {.lex_state = 17}, - [2845] = {.lex_state = 17}, - [2846] = {.lex_state = 18}, + [2845] = {.lex_state = 8}, + [2846] = {.lex_state = 23}, [2847] = {.lex_state = 72}, - [2848] = {.lex_state = 20}, - [2849] = {.lex_state = 72}, - [2850] = {.lex_state = 72}, - [2851] = {.lex_state = 72}, - [2852] = {.lex_state = 72}, - [2853] = {.lex_state = 72}, - [2854] = {.lex_state = 72}, - [2855] = {.lex_state = 72}, - [2856] = {.lex_state = 72}, - [2857] = {.lex_state = 72}, - [2858] = {.lex_state = 17}, - [2859] = {.lex_state = 19}, - [2860] = {.lex_state = 19}, - [2861] = {.lex_state = 72}, - [2862] = {.lex_state = 72}, - [2863] = {.lex_state = 72}, - [2864] = {.lex_state = 72}, + [2848] = {.lex_state = 72}, + [2849] = {.lex_state = 8}, + [2850] = {.lex_state = 17}, + [2851] = {.lex_state = 17}, + [2852] = {.lex_state = 23}, + [2853] = {.lex_state = 23}, + [2854] = {.lex_state = 17}, + [2855] = {.lex_state = 23}, + [2856] = {.lex_state = 17}, + [2857] = {.lex_state = 8}, + [2858] = {.lex_state = 23}, + [2859] = {.lex_state = 17}, + [2860] = {.lex_state = 23}, + [2861] = {.lex_state = 17}, + [2862] = {.lex_state = 17}, + [2863] = {.lex_state = 17}, + [2864] = {.lex_state = 17}, [2865] = {.lex_state = 8}, - [2866] = {.lex_state = 72}, + [2866] = {.lex_state = 8}, [2867] = {.lex_state = 72}, - [2868] = {.lex_state = 72}, - [2869] = {.lex_state = 19}, + [2868] = {.lex_state = 8}, + [2869] = {.lex_state = 23}, [2870] = {.lex_state = 17}, - [2871] = {.lex_state = 17}, + [2871] = {.lex_state = 31}, [2872] = {.lex_state = 8}, - [2873] = {.lex_state = 72}, - [2874] = {.lex_state = 72}, - [2875] = {.lex_state = 19}, - [2876] = {.lex_state = 72}, - [2877] = {.lex_state = 19}, + [2873] = {.lex_state = 23}, + [2874] = {.lex_state = 23}, + [2875] = {.lex_state = 31}, + [2876] = {.lex_state = 23, .external_lex_state = 4}, + [2877] = {.lex_state = 17}, [2878] = {.lex_state = 72}, - [2879] = {.lex_state = 19}, + [2879] = {.lex_state = 72}, [2880] = {.lex_state = 72}, - [2881] = {.lex_state = 19}, + [2881] = {.lex_state = 72}, [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 72}, + [2883] = {.lex_state = 19}, [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 19}, + [2885] = {.lex_state = 72}, [2886] = {.lex_state = 72}, [2887] = {.lex_state = 72}, [2888] = {.lex_state = 72}, - [2889] = {.lex_state = 19}, + [2889] = {.lex_state = 17}, [2890] = {.lex_state = 72}, [2891] = {.lex_state = 72}, [2892] = {.lex_state = 72}, [2893] = {.lex_state = 72}, [2894] = {.lex_state = 72}, [2895] = {.lex_state = 72}, - [2896] = {.lex_state = 72}, + [2896] = {.lex_state = 17}, [2897] = {.lex_state = 72}, [2898] = {.lex_state = 72}, - [2899] = {.lex_state = 72}, - [2900] = {.lex_state = 72}, - [2901] = {.lex_state = 17}, + [2899] = {.lex_state = 17}, + [2900] = {.lex_state = 17}, + [2901] = {.lex_state = 72}, [2902] = {.lex_state = 72}, [2903] = {.lex_state = 72}, - [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 72}, + [2904] = {.lex_state = 17}, + [2905] = {.lex_state = 17}, [2906] = {.lex_state = 72}, [2907] = {.lex_state = 72}, [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 72}, + [2909] = {.lex_state = 19}, [2910] = {.lex_state = 72}, - [2911] = {.lex_state = 8}, + [2911] = {.lex_state = 72}, [2912] = {.lex_state = 72}, [2913] = {.lex_state = 72}, - [2914] = {.lex_state = 23}, + [2914] = {.lex_state = 72}, [2915] = {.lex_state = 72}, [2916] = {.lex_state = 72}, [2917] = {.lex_state = 72}, @@ -13315,122 +13360,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2923] = {.lex_state = 72}, [2924] = {.lex_state = 72}, [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 72}, - [2927] = {.lex_state = 72}, - [2928] = {.lex_state = 8}, - [2929] = {.lex_state = 17}, - [2930] = {.lex_state = 72}, + [2926] = {.lex_state = 17}, + [2927] = {.lex_state = 19}, + [2928] = {.lex_state = 72}, + [2929] = {.lex_state = 72}, + [2930] = {.lex_state = 19}, [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 72}, - [2933] = {.lex_state = 72}, + [2932] = {.lex_state = 20}, + [2933] = {.lex_state = 19}, [2934] = {.lex_state = 72}, - [2935] = {.lex_state = 72}, - [2936] = {.lex_state = 23, .external_lex_state = 4}, + [2935] = {.lex_state = 19}, + [2936] = {.lex_state = 72}, [2937] = {.lex_state = 72}, - [2938] = {.lex_state = 72}, - [2939] = {.lex_state = 17}, - [2940] = {.lex_state = 19}, + [2938] = {.lex_state = 19}, + [2939] = {.lex_state = 19}, + [2940] = {.lex_state = 72}, [2941] = {.lex_state = 72}, [2942] = {.lex_state = 72}, - [2943] = {.lex_state = 19}, - [2944] = {.lex_state = 19}, + [2943] = {.lex_state = 17}, + [2944] = {.lex_state = 72}, [2945] = {.lex_state = 72}, [2946] = {.lex_state = 72}, [2947] = {.lex_state = 72}, [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 72}, + [2949] = {.lex_state = 17}, [2950] = {.lex_state = 72}, [2951] = {.lex_state = 72}, - [2952] = {.lex_state = 19}, - [2953] = {.lex_state = 72}, + [2952] = {.lex_state = 72}, + [2953] = {.lex_state = 8}, [2954] = {.lex_state = 72}, - [2955] = {.lex_state = 19}, - [2956] = {.lex_state = 17}, + [2955] = {.lex_state = 72}, + [2956] = {.lex_state = 72}, [2957] = {.lex_state = 72}, - [2958] = {.lex_state = 72}, - [2959] = {.lex_state = 8}, + [2958] = {.lex_state = 17}, + [2959] = {.lex_state = 72}, [2960] = {.lex_state = 72}, [2961] = {.lex_state = 72}, - [2962] = {.lex_state = 19}, - [2963] = {.lex_state = 17}, + [2962] = {.lex_state = 72}, + [2963] = {.lex_state = 72}, [2964] = {.lex_state = 72}, [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, [2967] = {.lex_state = 72}, - [2968] = {.lex_state = 17}, + [2968] = {.lex_state = 72}, [2969] = {.lex_state = 72}, - [2970] = {.lex_state = 72}, - [2971] = {.lex_state = 19}, + [2970] = {.lex_state = 20}, + [2971] = {.lex_state = 72}, [2972] = {.lex_state = 19}, - [2973] = {.lex_state = 72}, - [2974] = {.lex_state = 19}, + [2973] = {.lex_state = 19}, + [2974] = {.lex_state = 72}, [2975] = {.lex_state = 72}, - [2976] = {.lex_state = 19}, + [2976] = {.lex_state = 72}, [2977] = {.lex_state = 72}, [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 17}, + [2980] = {.lex_state = 72}, [2981] = {.lex_state = 72}, - [2982] = {.lex_state = 72}, + [2982] = {.lex_state = 23, .external_lex_state = 4}, [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 19}, + [2984] = {.lex_state = 72}, [2985] = {.lex_state = 72}, [2986] = {.lex_state = 72}, [2987] = {.lex_state = 19}, [2988] = {.lex_state = 72}, [2989] = {.lex_state = 72}, [2990] = {.lex_state = 72}, - [2991] = {.lex_state = 72}, - [2992] = {.lex_state = 19}, + [2991] = {.lex_state = 19}, + [2992] = {.lex_state = 72}, [2993] = {.lex_state = 72}, [2994] = {.lex_state = 72}, - [2995] = {.lex_state = 8}, - [2996] = {.lex_state = 72}, - [2997] = {.lex_state = 17}, + [2995] = {.lex_state = 72}, + [2996] = {.lex_state = 19}, + [2997] = {.lex_state = 19}, [2998] = {.lex_state = 72}, - [2999] = {.lex_state = 19}, + [2999] = {.lex_state = 72}, [3000] = {.lex_state = 19}, [3001] = {.lex_state = 72}, [3002] = {.lex_state = 72}, [3003] = {.lex_state = 72}, - [3004] = {.lex_state = 17}, - [3005] = {.lex_state = 17}, + [3004] = {.lex_state = 72}, + [3005] = {.lex_state = 72}, [3006] = {.lex_state = 72}, - [3007] = {.lex_state = 72}, - [3008] = {.lex_state = 20}, + [3007] = {.lex_state = 19}, + [3008] = {.lex_state = 17}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 72}, - [3011] = {.lex_state = 72}, + [3010] = {.lex_state = 19}, + [3011] = {.lex_state = 17}, [3012] = {.lex_state = 72}, - [3013] = {.lex_state = 17}, - [3014] = {.lex_state = 17}, - [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 72}, + [3013] = {.lex_state = 19}, + [3014] = {.lex_state = 19}, + [3015] = {.lex_state = 19}, + [3016] = {.lex_state = 19}, [3017] = {.lex_state = 19}, - [3018] = {.lex_state = 17}, - [3019] = {.lex_state = 72}, - [3020] = {.lex_state = 17}, + [3018] = {.lex_state = 72}, + [3019] = {.lex_state = 19}, + [3020] = {.lex_state = 23}, [3021] = {.lex_state = 72}, - [3022] = {.lex_state = 72}, + [3022] = {.lex_state = 8}, [3023] = {.lex_state = 72}, [3024] = {.lex_state = 72}, [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, [3027] = {.lex_state = 72}, - [3028] = {.lex_state = 8}, + [3028] = {.lex_state = 72}, [3029] = {.lex_state = 72}, [3030] = {.lex_state = 72}, [3031] = {.lex_state = 72}, - [3032] = {.lex_state = 19}, + [3032] = {.lex_state = 72}, [3033] = {.lex_state = 72}, [3034] = {.lex_state = 72}, [3035] = {.lex_state = 72}, - [3036] = {.lex_state = 17}, + [3036] = {.lex_state = 72}, [3037] = {.lex_state = 72}, - [3038] = {.lex_state = 20}, - [3039] = {.lex_state = 72}, - [3040] = {.lex_state = 19}, - [3041] = {.lex_state = 8}, + [3038] = {.lex_state = 72}, + [3039] = {.lex_state = 31}, + [3040] = {.lex_state = 72}, + [3041] = {.lex_state = 72}, [3042] = {.lex_state = 72}, [3043] = {.lex_state = 72}, [3044] = {.lex_state = 72}, @@ -13442,543 +13487,543 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, [3052] = {.lex_state = 72}, - [3053] = {.lex_state = 19}, - [3054] = {.lex_state = 72}, - [3055] = {.lex_state = 72}, - [3056] = {.lex_state = 19}, + [3053] = {.lex_state = 31}, + [3054] = {.lex_state = 19}, + [3055] = {.lex_state = 8}, + [3056] = {.lex_state = 72}, [3057] = {.lex_state = 72}, [3058] = {.lex_state = 19}, [3059] = {.lex_state = 72}, - [3060] = {.lex_state = 19}, - [3061] = {.lex_state = 72}, - [3062] = {.lex_state = 17}, - [3063] = {.lex_state = 19}, - [3064] = {.lex_state = 31}, + [3060] = {.lex_state = 72}, + [3061] = {.lex_state = 17}, + [3062] = {.lex_state = 72}, + [3063] = {.lex_state = 72}, + [3064] = {.lex_state = 17}, [3065] = {.lex_state = 72}, - [3066] = {.lex_state = 19}, + [3066] = {.lex_state = 72}, [3067] = {.lex_state = 72}, - [3068] = {.lex_state = 72}, - [3069] = {.lex_state = 17}, - [3070] = {.lex_state = 72}, + [3068] = {.lex_state = 19}, + [3069] = {.lex_state = 8}, + [3070] = {.lex_state = 20}, [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 72}, + [3072] = {.lex_state = 19}, [3073] = {.lex_state = 72}, [3074] = {.lex_state = 72}, [3075] = {.lex_state = 72}, [3076] = {.lex_state = 72}, [3077] = {.lex_state = 72}, [3078] = {.lex_state = 20}, - [3079] = {.lex_state = 19}, + [3079] = {.lex_state = 72}, [3080] = {.lex_state = 72}, [3081] = {.lex_state = 19}, [3082] = {.lex_state = 72}, - [3083] = {.lex_state = 8}, - [3084] = {.lex_state = 72}, + [3083] = {.lex_state = 72}, + [3084] = {.lex_state = 17}, [3085] = {.lex_state = 72}, - [3086] = {.lex_state = 72}, + [3086] = {.lex_state = 17}, [3087] = {.lex_state = 72}, [3088] = {.lex_state = 72}, [3089] = {.lex_state = 72}, - [3090] = {.lex_state = 72}, - [3091] = {.lex_state = 72}, + [3090] = {.lex_state = 19}, + [3091] = {.lex_state = 23}, [3092] = {.lex_state = 72}, - [3093] = {.lex_state = 72}, - [3094] = {.lex_state = 17}, + [3093] = {.lex_state = 8}, + [3094] = {.lex_state = 8}, [3095] = {.lex_state = 72}, - [3096] = {.lex_state = 72}, + [3096] = {.lex_state = 19}, [3097] = {.lex_state = 72}, - [3098] = {.lex_state = 17}, - [3099] = {.lex_state = 72}, - [3100] = {.lex_state = 72}, - [3101] = {.lex_state = 8}, + [3098] = {.lex_state = 72}, + [3099] = {.lex_state = 17}, + [3100] = {.lex_state = 17}, + [3101] = {.lex_state = 72}, [3102] = {.lex_state = 72}, - [3103] = {.lex_state = 72}, + [3103] = {.lex_state = 23}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, - [3106] = {.lex_state = 19}, - [3107] = {.lex_state = 19}, + [3106] = {.lex_state = 72}, + [3107] = {.lex_state = 72}, [3108] = {.lex_state = 72}, [3109] = {.lex_state = 72}, - [3110] = {.lex_state = 31}, - [3111] = {.lex_state = 23}, - [3112] = {.lex_state = 8}, + [3110] = {.lex_state = 8}, + [3111] = {.lex_state = 72}, + [3112] = {.lex_state = 72}, [3113] = {.lex_state = 72}, [3114] = {.lex_state = 72}, - [3115] = {.lex_state = 72}, + [3115] = {.lex_state = 23}, [3116] = {.lex_state = 72}, - [3117] = {.lex_state = 17}, + [3117] = {.lex_state = 72}, [3118] = {.lex_state = 72}, [3119] = {.lex_state = 72}, [3120] = {.lex_state = 72}, [3121] = {.lex_state = 72}, [3122] = {.lex_state = 72}, - [3123] = {.lex_state = 23}, - [3124] = {.lex_state = 8}, + [3123] = {.lex_state = 72}, + [3124] = {.lex_state = 72}, [3125] = {.lex_state = 72}, - [3126] = {.lex_state = 8}, - [3127] = {.lex_state = 72}, - [3128] = {.lex_state = 72}, + [3126] = {.lex_state = 17}, + [3127] = {.lex_state = 19}, + [3128] = {.lex_state = 19}, [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 17}, - [3131] = {.lex_state = 72}, - [3132] = {.lex_state = 72}, - [3133] = {.lex_state = 72}, + [3130] = {.lex_state = 19}, + [3131] = {.lex_state = 19}, + [3132] = {.lex_state = 19}, + [3133] = {.lex_state = 19}, [3134] = {.lex_state = 72}, - [3135] = {.lex_state = 8}, + [3135] = {.lex_state = 72}, [3136] = {.lex_state = 17}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, - [3139] = {.lex_state = 17}, + [3139] = {.lex_state = 72}, [3140] = {.lex_state = 72}, - [3141] = {.lex_state = 20}, + [3141] = {.lex_state = 72}, [3142] = {.lex_state = 72}, - [3143] = {.lex_state = 17}, + [3143] = {.lex_state = 72}, [3144] = {.lex_state = 72}, [3145] = {.lex_state = 72}, - [3146] = {.lex_state = 72}, + [3146] = {.lex_state = 17}, [3147] = {.lex_state = 72}, [3148] = {.lex_state = 72}, [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 23}, + [3150] = {.lex_state = 72}, [3151] = {.lex_state = 72}, - [3152] = {.lex_state = 72}, - [3153] = {.lex_state = 72}, - [3154] = {.lex_state = 72}, - [3155] = {.lex_state = 72}, - [3156] = {.lex_state = 72}, - [3157] = {.lex_state = 17}, - [3158] = {.lex_state = 17}, + [3152] = {.lex_state = 17}, + [3153] = {.lex_state = 20}, + [3154] = {.lex_state = 8}, + [3155] = {.lex_state = 8}, + [3156] = {.lex_state = 17}, + [3157] = {.lex_state = 72}, + [3158] = {.lex_state = 72}, [3159] = {.lex_state = 72}, - [3160] = {.lex_state = 20}, + [3160] = {.lex_state = 72}, [3161] = {.lex_state = 72}, [3162] = {.lex_state = 72}, [3163] = {.lex_state = 72}, - [3164] = {.lex_state = 72}, - [3165] = {.lex_state = 72}, + [3164] = {.lex_state = 17}, + [3165] = {.lex_state = 8}, [3166] = {.lex_state = 72}, - [3167] = {.lex_state = 72}, - [3168] = {.lex_state = 17}, - [3169] = {.lex_state = 17}, + [3167] = {.lex_state = 17}, + [3168] = {.lex_state = 8}, + [3169] = {.lex_state = 72}, [3170] = {.lex_state = 17}, - [3171] = {.lex_state = 17}, - [3172] = {.lex_state = 72}, - [3173] = {.lex_state = 17}, - [3174] = {.lex_state = 72}, - [3175] = {.lex_state = 17}, + [3171] = {.lex_state = 72}, + [3172] = {.lex_state = 8}, + [3173] = {.lex_state = 72}, + [3174] = {.lex_state = 8}, + [3175] = {.lex_state = 72}, [3176] = {.lex_state = 17}, [3177] = {.lex_state = 72}, - [3178] = {.lex_state = 72}, + [3178] = {.lex_state = 8}, [3179] = {.lex_state = 72}, [3180] = {.lex_state = 72}, - [3181] = {.lex_state = 72}, - [3182] = {.lex_state = 72}, - [3183] = {.lex_state = 72}, + [3181] = {.lex_state = 17}, + [3182] = {.lex_state = 17}, + [3183] = {.lex_state = 19}, [3184] = {.lex_state = 72}, - [3185] = {.lex_state = 17}, + [3185] = {.lex_state = 72}, [3186] = {.lex_state = 72}, [3187] = {.lex_state = 72}, [3188] = {.lex_state = 72}, - [3189] = {.lex_state = 17}, - [3190] = {.lex_state = 17}, + [3189] = {.lex_state = 72}, + [3190] = {.lex_state = 72}, [3191] = {.lex_state = 72}, [3192] = {.lex_state = 72}, [3193] = {.lex_state = 72}, [3194] = {.lex_state = 72}, [3195] = {.lex_state = 72}, - [3196] = {.lex_state = 17}, + [3196] = {.lex_state = 72}, [3197] = {.lex_state = 72}, - [3198] = {.lex_state = 72, .external_lex_state = 5}, - [3199] = {.lex_state = 72}, + [3198] = {.lex_state = 17}, + [3199] = {.lex_state = 17}, [3200] = {.lex_state = 17}, - [3201] = {.lex_state = 72}, - [3202] = {.lex_state = 72}, - [3203] = {.lex_state = 72}, - [3204] = {.lex_state = 72}, + [3201] = {.lex_state = 17}, + [3202] = {.lex_state = 31}, + [3203] = {.lex_state = 17}, + [3204] = {.lex_state = 17}, [3205] = {.lex_state = 72}, [3206] = {.lex_state = 72}, - [3207] = {.lex_state = 17}, - [3208] = {.lex_state = 17}, + [3207] = {.lex_state = 72}, + [3208] = {.lex_state = 72}, [3209] = {.lex_state = 72}, - [3210] = {.lex_state = 17}, + [3210] = {.lex_state = 31}, [3211] = {.lex_state = 72}, [3212] = {.lex_state = 17}, [3213] = {.lex_state = 17}, - [3214] = {.lex_state = 17}, - [3215] = {.lex_state = 72}, + [3214] = {.lex_state = 72}, + [3215] = {.lex_state = 20}, [3216] = {.lex_state = 72}, - [3217] = {.lex_state = 23}, - [3218] = {.lex_state = 17}, - [3219] = {.lex_state = 17}, + [3217] = {.lex_state = 72}, + [3218] = {.lex_state = 72}, + [3219] = {.lex_state = 72}, [3220] = {.lex_state = 17}, - [3221] = {.lex_state = 17}, + [3221] = {.lex_state = 72}, [3222] = {.lex_state = 72}, [3223] = {.lex_state = 72}, - [3224] = {.lex_state = 72}, - [3225] = {.lex_state = 17}, - [3226] = {.lex_state = 17}, - [3227] = {.lex_state = 17}, - [3228] = {.lex_state = 17}, + [3224] = {.lex_state = 17}, + [3225] = {.lex_state = 72}, + [3226] = {.lex_state = 72}, + [3227] = {.lex_state = 72}, + [3228] = {.lex_state = 72}, [3229] = {.lex_state = 17}, - [3230] = {.lex_state = 17}, + [3230] = {.lex_state = 72}, [3231] = {.lex_state = 72}, [3232] = {.lex_state = 72}, [3233] = {.lex_state = 72}, [3234] = {.lex_state = 72}, [3235] = {.lex_state = 17}, - [3236] = {.lex_state = 72}, + [3236] = {.lex_state = 17}, [3237] = {.lex_state = 72}, [3238] = {.lex_state = 17}, - [3239] = {.lex_state = 72}, + [3239] = {.lex_state = 17}, [3240] = {.lex_state = 72}, - [3241] = {.lex_state = 31}, - [3242] = {.lex_state = 72}, - [3243] = {.lex_state = 72}, - [3244] = {.lex_state = 72}, + [3241] = {.lex_state = 17}, + [3242] = {.lex_state = 8}, + [3243] = {.lex_state = 17}, + [3244] = {.lex_state = 17}, [3245] = {.lex_state = 72}, - [3246] = {.lex_state = 17}, + [3246] = {.lex_state = 72}, [3247] = {.lex_state = 72}, - [3248] = {.lex_state = 72}, + [3248] = {.lex_state = 23, .external_lex_state = 5}, [3249] = {.lex_state = 72}, - [3250] = {.lex_state = 17}, + [3250] = {.lex_state = 72}, [3251] = {.lex_state = 17}, [3252] = {.lex_state = 17}, [3253] = {.lex_state = 72}, - [3254] = {.lex_state = 72}, - [3255] = {.lex_state = 72}, - [3256] = {.lex_state = 72}, + [3254] = {.lex_state = 17}, + [3255] = {.lex_state = 17}, + [3256] = {.lex_state = 17}, [3257] = {.lex_state = 72}, [3258] = {.lex_state = 72}, - [3259] = {.lex_state = 72}, - [3260] = {.lex_state = 72}, - [3261] = {.lex_state = 17}, + [3259] = {.lex_state = 17}, + [3260] = {.lex_state = 17}, + [3261] = {.lex_state = 72}, [3262] = {.lex_state = 72}, - [3263] = {.lex_state = 17}, + [3263] = {.lex_state = 72}, [3264] = {.lex_state = 72}, [3265] = {.lex_state = 17}, - [3266] = {.lex_state = 17}, - [3267] = {.lex_state = 17}, - [3268] = {.lex_state = 72}, + [3266] = {.lex_state = 72}, + [3267] = {.lex_state = 72}, + [3268] = {.lex_state = 17}, [3269] = {.lex_state = 17}, - [3270] = {.lex_state = 72}, + [3270] = {.lex_state = 17}, [3271] = {.lex_state = 72}, - [3272] = {.lex_state = 72}, + [3272] = {.lex_state = 23}, [3273] = {.lex_state = 72}, - [3274] = {.lex_state = 31}, - [3275] = {.lex_state = 72}, - [3276] = {.lex_state = 17}, - [3277] = {.lex_state = 17}, + [3274] = {.lex_state = 72}, + [3275] = {.lex_state = 17}, + [3276] = {.lex_state = 72}, + [3277] = {.lex_state = 72}, [3278] = {.lex_state = 17}, [3279] = {.lex_state = 17}, [3280] = {.lex_state = 17}, [3281] = {.lex_state = 17}, - [3282] = {.lex_state = 17}, + [3282] = {.lex_state = 72}, [3283] = {.lex_state = 72}, [3284] = {.lex_state = 72}, [3285] = {.lex_state = 72}, - [3286] = {.lex_state = 17}, + [3286] = {.lex_state = 72}, [3287] = {.lex_state = 17}, - [3288] = {.lex_state = 17}, + [3288] = {.lex_state = 72}, [3289] = {.lex_state = 17}, [3290] = {.lex_state = 17}, [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 = 17}, - [3298] = {.lex_state = 17}, - [3299] = {.lex_state = 17}, + [3293] = {.lex_state = 72}, + [3294] = {.lex_state = 72}, + [3295] = {.lex_state = 72}, + [3296] = {.lex_state = 72}, + [3297] = {.lex_state = 72}, + [3298] = {.lex_state = 72}, + [3299] = {.lex_state = 72}, [3300] = {.lex_state = 17}, [3301] = {.lex_state = 17}, - [3302] = {.lex_state = 72}, - [3303] = {.lex_state = 72}, - [3304] = {.lex_state = 72}, + [3302] = {.lex_state = 17}, + [3303] = {.lex_state = 17}, + [3304] = {.lex_state = 17}, [3305] = {.lex_state = 72}, [3306] = {.lex_state = 72}, - [3307] = {.lex_state = 23, .external_lex_state = 6}, - [3308] = {.lex_state = 23, .external_lex_state = 6}, - [3309] = {.lex_state = 72}, - [3310] = {.lex_state = 72}, - [3311] = {.lex_state = 72}, - [3312] = {.lex_state = 72}, + [3307] = {.lex_state = 72}, + [3308] = {.lex_state = 17}, + [3309] = {.lex_state = 17}, + [3310] = {.lex_state = 17}, + [3311] = {.lex_state = 17}, + [3312] = {.lex_state = 17}, [3313] = {.lex_state = 17}, - [3314] = {.lex_state = 72}, + [3314] = {.lex_state = 17}, [3315] = {.lex_state = 17}, [3316] = {.lex_state = 17}, - [3317] = {.lex_state = 72}, - [3318] = {.lex_state = 72}, - [3319] = {.lex_state = 72}, + [3317] = {.lex_state = 17}, + [3318] = {.lex_state = 17}, + [3319] = {.lex_state = 17}, [3320] = {.lex_state = 17}, - [3321] = {.lex_state = 31}, - [3322] = {.lex_state = 72}, - [3323] = {.lex_state = 72}, + [3321] = {.lex_state = 17}, + [3322] = {.lex_state = 17}, + [3323] = {.lex_state = 17}, [3324] = {.lex_state = 17}, - [3325] = {.lex_state = 23, .external_lex_state = 6}, - [3326] = {.lex_state = 17}, + [3325] = {.lex_state = 72}, + [3326] = {.lex_state = 72}, [3327] = {.lex_state = 72}, [3328] = {.lex_state = 72}, - [3329] = {.lex_state = 31}, - [3330] = {.lex_state = 31}, + [3329] = {.lex_state = 72}, + [3330] = {.lex_state = 72}, [3331] = {.lex_state = 72}, - [3332] = {.lex_state = 72}, + [3332] = {.lex_state = 17}, [3333] = {.lex_state = 72}, [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 72}, - [3336] = {.lex_state = 17}, - [3337] = {.lex_state = 17}, + [3335] = {.lex_state = 17}, + [3336] = {.lex_state = 72}, + [3337] = {.lex_state = 72}, [3338] = {.lex_state = 72}, [3339] = {.lex_state = 72}, [3340] = {.lex_state = 72}, [3341] = {.lex_state = 17}, - [3342] = {.lex_state = 72}, - [3343] = {.lex_state = 72}, + [3342] = {.lex_state = 17}, + [3343] = {.lex_state = 17}, [3344] = {.lex_state = 72}, - [3345] = {.lex_state = 17}, + [3345] = {.lex_state = 72}, [3346] = {.lex_state = 72}, - [3347] = {.lex_state = 72}, - [3348] = {.lex_state = 72}, + [3347] = {.lex_state = 72, .external_lex_state = 6}, + [3348] = {.lex_state = 17}, [3349] = {.lex_state = 72}, - [3350] = {.lex_state = 72}, + [3350] = {.lex_state = 17}, [3351] = {.lex_state = 72}, [3352] = {.lex_state = 72}, [3353] = {.lex_state = 72}, [3354] = {.lex_state = 72}, [3355] = {.lex_state = 72}, [3356] = {.lex_state = 72}, - [3357] = {.lex_state = 72}, - [3358] = {.lex_state = 72}, - [3359] = {.lex_state = 72}, - [3360] = {.lex_state = 8}, - [3361] = {.lex_state = 72}, - [3362] = {.lex_state = 72}, + [3357] = {.lex_state = 17}, + [3358] = {.lex_state = 31}, + [3359] = {.lex_state = 31}, + [3360] = {.lex_state = 72}, + [3361] = {.lex_state = 7}, + [3362] = {.lex_state = 7}, [3363] = {.lex_state = 72}, [3364] = {.lex_state = 72}, - [3365] = {.lex_state = 72}, + [3365] = {.lex_state = 17}, [3366] = {.lex_state = 72}, [3367] = {.lex_state = 72}, - [3368] = {.lex_state = 31}, + [3368] = {.lex_state = 72}, [3369] = {.lex_state = 72}, [3370] = {.lex_state = 72}, - [3371] = {.lex_state = 17}, - [3372] = {.lex_state = 17}, - [3373] = {.lex_state = 72, .external_lex_state = 5}, - [3374] = {.lex_state = 17}, + [3371] = {.lex_state = 72}, + [3372] = {.lex_state = 72}, + [3373] = {.lex_state = 23, .external_lex_state = 5}, + [3374] = {.lex_state = 72}, [3375] = {.lex_state = 17}, - [3376] = {.lex_state = 17}, - [3377] = {.lex_state = 72}, + [3376] = {.lex_state = 72}, + [3377] = {.lex_state = 17}, [3378] = {.lex_state = 17}, - [3379] = {.lex_state = 23}, + [3379] = {.lex_state = 17}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, [3382] = {.lex_state = 72}, - [3383] = {.lex_state = 17}, - [3384] = {.lex_state = 72}, - [3385] = {.lex_state = 72}, + [3383] = {.lex_state = 72}, + [3384] = {.lex_state = 23, .external_lex_state = 5}, + [3385] = {.lex_state = 8}, [3386] = {.lex_state = 72}, - [3387] = {.lex_state = 17}, - [3388] = {.lex_state = 7}, - [3389] = {.lex_state = 7}, - [3390] = {.lex_state = 17}, + [3387] = {.lex_state = 72}, + [3388] = {.lex_state = 72}, + [3389] = {.lex_state = 72}, + [3390] = {.lex_state = 72}, [3391] = {.lex_state = 72}, [3392] = {.lex_state = 72}, [3393] = {.lex_state = 72}, [3394] = {.lex_state = 72}, - [3395] = {.lex_state = 72}, + [3395] = {.lex_state = 23}, [3396] = {.lex_state = 72}, - [3397] = {.lex_state = 72}, - [3398] = {.lex_state = 72}, + [3397] = {.lex_state = 17}, + [3398] = {.lex_state = 17}, [3399] = {.lex_state = 72}, [3400] = {.lex_state = 72}, [3401] = {.lex_state = 72}, [3402] = {.lex_state = 72}, [3403] = {.lex_state = 17}, - [3404] = {.lex_state = 72}, - [3405] = {.lex_state = 72}, + [3404] = {.lex_state = 17}, + [3405] = {.lex_state = 31}, [3406] = {.lex_state = 72}, - [3407] = {.lex_state = 72}, + [3407] = {.lex_state = 17}, [3408] = {.lex_state = 72}, - [3409] = {.lex_state = 17}, - [3410] = {.lex_state = 72}, + [3409] = {.lex_state = 72}, + [3410] = {.lex_state = 17}, [3411] = {.lex_state = 72}, - [3412] = {.lex_state = 72}, + [3412] = {.lex_state = 17}, [3413] = {.lex_state = 17}, - [3414] = {.lex_state = 17}, + [3414] = {.lex_state = 72}, [3415] = {.lex_state = 17}, [3416] = {.lex_state = 72}, - [3417] = {.lex_state = 17}, - [3418] = {.lex_state = 17}, - [3419] = {.lex_state = 17}, + [3417] = {.lex_state = 72}, + [3418] = {.lex_state = 72}, + [3419] = {.lex_state = 72}, [3420] = {.lex_state = 72}, - [3421] = {.lex_state = 8}, + [3421] = {.lex_state = 72}, [3422] = {.lex_state = 72}, - [3423] = {.lex_state = 72}, + [3423] = {.lex_state = 17}, [3424] = {.lex_state = 72}, - [3425] = {.lex_state = 17}, - [3426] = {.lex_state = 72}, - [3427] = {.lex_state = 17}, + [3425] = {.lex_state = 72}, + [3426] = {.lex_state = 72, .external_lex_state = 6}, + [3427] = {.lex_state = 72}, [3428] = {.lex_state = 72}, [3429] = {.lex_state = 17}, [3430] = {.lex_state = 72}, - [3431] = {.lex_state = 17}, + [3431] = {.lex_state = 72}, [3432] = {.lex_state = 17}, - [3433] = {.lex_state = 17}, - [3434] = {.lex_state = 17}, - [3435] = {.lex_state = 17}, - [3436] = {.lex_state = 17}, - [3437] = {.lex_state = 17}, + [3433] = {.lex_state = 72}, + [3434] = {.lex_state = 72}, + [3435] = {.lex_state = 72}, + [3436] = {.lex_state = 72}, + [3437] = {.lex_state = 72}, [3438] = {.lex_state = 72}, - [3439] = {.lex_state = 17}, - [3440] = {.lex_state = 17}, - [3441] = {.lex_state = 17}, - [3442] = {.lex_state = 17}, + [3439] = {.lex_state = 72}, + [3440] = {.lex_state = 72}, + [3441] = {.lex_state = 72}, + [3442] = {.lex_state = 72}, [3443] = {.lex_state = 72}, - [3444] = {.lex_state = 72}, + [3444] = {.lex_state = 17}, [3445] = {.lex_state = 72}, [3446] = {.lex_state = 17}, - [3447] = {.lex_state = 17}, - [3448] = {.lex_state = 17}, - [3449] = {.lex_state = 72}, + [3447] = {.lex_state = 72}, + [3448] = {.lex_state = 72}, + [3449] = {.lex_state = 17}, [3450] = {.lex_state = 72}, - [3451] = {.lex_state = 72}, + [3451] = {.lex_state = 17}, [3452] = {.lex_state = 17}, - [3453] = {.lex_state = 17}, - [3454] = {.lex_state = 17}, + [3453] = {.lex_state = 72}, + [3454] = {.lex_state = 72}, [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 17}, - [3457] = {.lex_state = 72}, + [3456] = {.lex_state = 72}, + [3457] = {.lex_state = 17}, [3458] = {.lex_state = 17}, - [3459] = {.lex_state = 72}, - [3460] = {.lex_state = 72}, + [3459] = {.lex_state = 17}, + [3460] = {.lex_state = 17}, [3461] = {.lex_state = 72}, - [3462] = {.lex_state = 72}, - [3463] = {.lex_state = 20}, - [3464] = {.lex_state = 72}, - [3465] = {.lex_state = 72}, - [3466] = {.lex_state = 72}, - [3467] = {.lex_state = 17}, + [3462] = {.lex_state = 17}, + [3463] = {.lex_state = 72}, + [3464] = {.lex_state = 17}, + [3465] = {.lex_state = 17}, + [3466] = {.lex_state = 17}, + [3467] = {.lex_state = 31}, [3468] = {.lex_state = 72}, - [3469] = {.lex_state = 72}, - [3470] = {.lex_state = 72}, - [3471] = {.lex_state = 72}, - [3472] = {.lex_state = 72, .external_lex_state = 7}, - [3473] = {.lex_state = 72}, - [3474] = {.lex_state = 72}, + [3469] = {.lex_state = 17}, + [3470] = {.lex_state = 17}, + [3471] = {.lex_state = 17}, + [3472] = {.lex_state = 72}, + [3473] = {.lex_state = 17}, + [3474] = {.lex_state = 17}, [3475] = {.lex_state = 72}, - [3476] = {.lex_state = 72}, - [3477] = {.lex_state = 72}, - [3478] = {.lex_state = 72}, - [3479] = {.lex_state = 72}, - [3480] = {.lex_state = 17}, + [3476] = {.lex_state = 17}, + [3477] = {.lex_state = 17}, + [3478] = {.lex_state = 17}, + [3479] = {.lex_state = 17}, + [3480] = {.lex_state = 72}, [3481] = {.lex_state = 72}, - [3482] = {.lex_state = 72}, + [3482] = {.lex_state = 17}, [3483] = {.lex_state = 72}, - [3484] = {.lex_state = 72}, - [3485] = {.lex_state = 20}, - [3486] = {.lex_state = 20}, - [3487] = {.lex_state = 73}, + [3484] = {.lex_state = 17}, + [3485] = {.lex_state = 72}, + [3486] = {.lex_state = 72}, + [3487] = {.lex_state = 72}, [3488] = {.lex_state = 72}, [3489] = {.lex_state = 72}, - [3490] = {.lex_state = 72, .external_lex_state = 7}, - [3491] = {.lex_state = 72}, - [3492] = {.lex_state = 8}, - [3493] = {.lex_state = 73}, - [3494] = {.lex_state = 17}, + [3490] = {.lex_state = 72}, + [3491] = {.lex_state = 17}, + [3492] = {.lex_state = 17}, + [3493] = {.lex_state = 72}, + [3494] = {.lex_state = 72}, [3495] = {.lex_state = 72}, - [3496] = {.lex_state = 72}, + [3496] = {.lex_state = 17}, [3497] = {.lex_state = 17}, - [3498] = {.lex_state = 17}, + [3498] = {.lex_state = 72}, [3499] = {.lex_state = 17}, - [3500] = {.lex_state = 72}, + [3500] = {.lex_state = 17}, [3501] = {.lex_state = 72}, [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 20}, + [3503] = {.lex_state = 72, .external_lex_state = 7}, [3504] = {.lex_state = 72}, - [3505] = {.lex_state = 72}, - [3506] = {.lex_state = 72}, - [3507] = {.lex_state = 72}, + [3505] = {.lex_state = 17}, + [3506] = {.lex_state = 17}, + [3507] = {.lex_state = 17}, [3508] = {.lex_state = 72}, - [3509] = {.lex_state = 72}, - [3510] = {.lex_state = 20}, - [3511] = {.lex_state = 72}, + [3509] = {.lex_state = 17}, + [3510] = {.lex_state = 17}, + [3511] = {.lex_state = 72, .external_lex_state = 8}, [3512] = {.lex_state = 72}, [3513] = {.lex_state = 72}, [3514] = {.lex_state = 17}, [3515] = {.lex_state = 17}, - [3516] = {.lex_state = 72}, + [3516] = {.lex_state = 17}, [3517] = {.lex_state = 72}, - [3518] = {.lex_state = 72, .external_lex_state = 8}, + [3518] = {.lex_state = 72}, [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 72, .external_lex_state = 8}, + [3520] = {.lex_state = 72}, [3521] = {.lex_state = 72}, [3522] = {.lex_state = 72}, - [3523] = {.lex_state = 72}, - [3524] = {.lex_state = 17}, - [3525] = {.lex_state = 17}, - [3526] = {.lex_state = 20}, - [3527] = {.lex_state = 72}, - [3528] = {.lex_state = 72, .external_lex_state = 7}, - [3529] = {.lex_state = 72}, - [3530] = {.lex_state = 72, .external_lex_state = 7}, + [3523] = {.lex_state = 17}, + [3524] = {.lex_state = 23}, + [3525] = {.lex_state = 72}, + [3526] = {.lex_state = 73}, + [3527] = {.lex_state = 17}, + [3528] = {.lex_state = 72}, + [3529] = {.lex_state = 20}, + [3530] = {.lex_state = 72}, [3531] = {.lex_state = 72}, - [3532] = {.lex_state = 72}, + [3532] = {.lex_state = 17}, [3533] = {.lex_state = 17}, - [3534] = {.lex_state = 17}, + [3534] = {.lex_state = 72}, [3535] = {.lex_state = 72}, - [3536] = {.lex_state = 73}, + [3536] = {.lex_state = 72}, [3537] = {.lex_state = 17}, [3538] = {.lex_state = 72}, [3539] = {.lex_state = 72}, - [3540] = {.lex_state = 73}, + [3540] = {.lex_state = 72}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 72}, + [3542] = {.lex_state = 17}, [3543] = {.lex_state = 72}, - [3544] = {.lex_state = 72, .external_lex_state = 8}, - [3545] = {.lex_state = 17}, + [3544] = {.lex_state = 72}, + [3545] = {.lex_state = 72}, [3546] = {.lex_state = 72}, - [3547] = {.lex_state = 72, .external_lex_state = 7}, - [3548] = {.lex_state = 72}, - [3549] = {.lex_state = 17}, - [3550] = {.lex_state = 17}, - [3551] = {.lex_state = 17}, + [3547] = {.lex_state = 72}, + [3548] = {.lex_state = 20}, + [3549] = {.lex_state = 72}, + [3550] = {.lex_state = 72}, + [3551] = {.lex_state = 72}, [3552] = {.lex_state = 72}, [3553] = {.lex_state = 72}, - [3554] = {.lex_state = 20}, - [3555] = {.lex_state = 73}, + [3554] = {.lex_state = 17}, + [3555] = {.lex_state = 17}, [3556] = {.lex_state = 72}, [3557] = {.lex_state = 72}, [3558] = {.lex_state = 72}, [3559] = {.lex_state = 17}, - [3560] = {.lex_state = 72}, - [3561] = {.lex_state = 17}, - [3562] = {.lex_state = 72}, - [3563] = {.lex_state = 72, .external_lex_state = 8}, - [3564] = {.lex_state = 17}, - [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 17}, - [3567] = {.lex_state = 17}, - [3568] = {.lex_state = 17}, - [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 72}, + [3560] = {.lex_state = 17}, + [3561] = {.lex_state = 72}, + [3562] = {.lex_state = 20}, + [3563] = {.lex_state = 72}, + [3564] = {.lex_state = 72}, + [3565] = {.lex_state = 17}, + [3566] = {.lex_state = 72}, + [3567] = {.lex_state = 72, .external_lex_state = 7}, + [3568] = {.lex_state = 72}, + [3569] = {.lex_state = 20}, + [3570] = {.lex_state = 17}, [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 17}, - [3573] = {.lex_state = 20}, - [3574] = {.lex_state = 17}, + [3572] = {.lex_state = 72}, + [3573] = {.lex_state = 72}, + [3574] = {.lex_state = 72}, [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 72}, + [3576] = {.lex_state = 72, .external_lex_state = 8}, [3577] = {.lex_state = 72}, [3578] = {.lex_state = 72}, [3579] = {.lex_state = 72}, [3580] = {.lex_state = 72}, [3581] = {.lex_state = 72}, [3582] = {.lex_state = 72}, - [3583] = {.lex_state = 72}, - [3584] = {.lex_state = 72}, + [3583] = {.lex_state = 17}, + [3584] = {.lex_state = 17}, [3585] = {.lex_state = 17}, [3586] = {.lex_state = 72}, [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 72}, - [3589] = {.lex_state = 72, .external_lex_state = 9}, + [3588] = {.lex_state = 17}, + [3589] = {.lex_state = 72}, [3590] = {.lex_state = 72}, [3591] = {.lex_state = 72}, [3592] = {.lex_state = 72}, @@ -13989,70 +14034,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3597] = {.lex_state = 72}, [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 72}, - [3601] = {.lex_state = 72}, + [3600] = {.lex_state = 17}, + [3601] = {.lex_state = 17}, [3602] = {.lex_state = 72}, [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 8}, - [3605] = {.lex_state = 72}, + [3604] = {.lex_state = 72, .external_lex_state = 8}, + [3605] = {.lex_state = 167}, [3606] = {.lex_state = 17}, - [3607] = {.lex_state = 23}, + [3607] = {.lex_state = 72}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 73}, + [3609] = {.lex_state = 72}, [3610] = {.lex_state = 72}, [3611] = {.lex_state = 72}, [3612] = {.lex_state = 72}, [3613] = {.lex_state = 72}, - [3614] = {.lex_state = 17}, - [3615] = {.lex_state = 72}, + [3614] = {.lex_state = 72}, + [3615] = {.lex_state = 20}, [3616] = {.lex_state = 72}, - [3617] = {.lex_state = 17}, + [3617] = {.lex_state = 72}, [3618] = {.lex_state = 72}, [3619] = {.lex_state = 72}, - [3620] = {.lex_state = 17}, - [3621] = {.lex_state = 72}, - [3622] = {.lex_state = 72}, + [3620] = {.lex_state = 72}, + [3621] = {.lex_state = 20}, + [3622] = {.lex_state = 17}, [3623] = {.lex_state = 72}, [3624] = {.lex_state = 72}, - [3625] = {.lex_state = 20}, - [3626] = {.lex_state = 17}, - [3627] = {.lex_state = 17}, - [3628] = {.lex_state = 72, .external_lex_state = 9}, + [3625] = {.lex_state = 72, .external_lex_state = 9}, + [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 = 72}, - [3633] = {.lex_state = 20}, + [3632] = {.lex_state = 8}, + [3633] = {.lex_state = 72}, [3634] = {.lex_state = 72}, [3635] = {.lex_state = 17}, [3636] = {.lex_state = 17}, - [3637] = {.lex_state = 72}, - [3638] = {.lex_state = 72}, - [3639] = {.lex_state = 72}, + [3637] = {.lex_state = 17}, + [3638] = {.lex_state = 20}, + [3639] = {.lex_state = 8}, [3640] = {.lex_state = 72}, - [3641] = {.lex_state = 72, .external_lex_state = 9}, - [3642] = {.lex_state = 72}, + [3641] = {.lex_state = 17}, + [3642] = {.lex_state = 73}, [3643] = {.lex_state = 72}, - [3644] = {.lex_state = 72}, + [3644] = {.lex_state = 17}, [3645] = {.lex_state = 72}, [3646] = {.lex_state = 72}, - [3647] = {.lex_state = 20}, - [3648] = {.lex_state = 72, .external_lex_state = 9}, + [3647] = {.lex_state = 73}, + [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 17}, + [3650] = {.lex_state = 72}, [3651] = {.lex_state = 72}, - [3652] = {.lex_state = 72, .external_lex_state = 9}, + [3652] = {.lex_state = 17}, [3653] = {.lex_state = 72}, [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 72, .external_lex_state = 9}, - [3656] = {.lex_state = 72}, - [3657] = {.lex_state = 72}, - [3658] = {.lex_state = 17}, + [3655] = {.lex_state = 72}, + [3656] = {.lex_state = 20}, + [3657] = {.lex_state = 20}, + [3658] = {.lex_state = 72}, [3659] = {.lex_state = 72}, [3660] = {.lex_state = 72}, - [3661] = {.lex_state = 72}, + [3661] = {.lex_state = 73}, [3662] = {.lex_state = 72}, - [3663] = {.lex_state = 72}, + [3663] = {.lex_state = 72, .external_lex_state = 9}, [3664] = {.lex_state = 72}, [3665] = {.lex_state = 72}, [3666] = {.lex_state = 72}, @@ -14060,122 +14105,158 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3668] = {.lex_state = 72}, [3669] = {.lex_state = 72}, [3670] = {.lex_state = 72}, - [3671] = {.lex_state = 72}, - [3672] = {.lex_state = 20}, + [3671] = {.lex_state = 72, .external_lex_state = 7}, + [3672] = {.lex_state = 72}, [3673] = {.lex_state = 72}, [3674] = {.lex_state = 72}, [3675] = {.lex_state = 17}, [3676] = {.lex_state = 17}, - [3677] = {.lex_state = 72}, - [3678] = {.lex_state = 17}, + [3677] = {.lex_state = 72, .external_lex_state = 7}, + [3678] = {.lex_state = 72}, [3679] = {.lex_state = 72}, - [3680] = {.lex_state = 20}, - [3681] = {.lex_state = 20}, - [3682] = {.lex_state = 17}, - [3683] = {.lex_state = 17}, - [3684] = {.lex_state = 72}, + [3680] = {.lex_state = 72}, + [3681] = {.lex_state = 17}, + [3682] = {.lex_state = 72}, + [3683] = {.lex_state = 72}, + [3684] = {.lex_state = 72, .external_lex_state = 9}, [3685] = {.lex_state = 72}, - [3686] = {.lex_state = 20}, - [3687] = {.lex_state = 72}, - [3688] = {.lex_state = 17}, - [3689] = {.lex_state = 17}, - [3690] = {.lex_state = 17}, - [3691] = {.lex_state = 17}, + [3686] = {.lex_state = 72}, + [3687] = {.lex_state = 17}, + [3688] = {.lex_state = 72}, + [3689] = {.lex_state = 72}, + [3690] = {.lex_state = 72, .external_lex_state = 9}, + [3691] = {.lex_state = 72}, [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 72}, + [3693] = {.lex_state = 72, .external_lex_state = 9}, [3694] = {.lex_state = 72}, - [3695] = {.lex_state = 17}, + [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, - [3697] = {.lex_state = 17}, - [3698] = {.lex_state = 17}, - [3699] = {.lex_state = 17}, + [3697] = {.lex_state = 72}, + [3698] = {.lex_state = 72}, + [3699] = {.lex_state = 72}, [3700] = {.lex_state = 72}, - [3701] = {.lex_state = 20}, + [3701] = {.lex_state = 72}, [3702] = {.lex_state = 72}, - [3703] = {.lex_state = 72}, + [3703] = {.lex_state = 73}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 20}, - [3706] = {.lex_state = 73}, - [3707] = {.lex_state = 17}, - [3708] = {.lex_state = 72}, + [3705] = {.lex_state = 17}, + [3706] = {.lex_state = 20}, + [3707] = {.lex_state = 72}, + [3708] = {.lex_state = 73}, [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, [3711] = {.lex_state = 72}, [3712] = {.lex_state = 72}, - [3713] = {.lex_state = 17}, + [3713] = {.lex_state = 72}, [3714] = {.lex_state = 20}, - [3715] = {.lex_state = 72}, - [3716] = {.lex_state = 72}, + [3715] = {.lex_state = 20}, + [3716] = {.lex_state = 17}, [3717] = {.lex_state = 72}, - [3718] = {.lex_state = 72}, - [3719] = {.lex_state = 72}, - [3720] = {.lex_state = 72}, - [3721] = {.lex_state = 72}, - [3722] = {.lex_state = 72}, - [3723] = {.lex_state = 20}, + [3718] = {.lex_state = 20}, + [3719] = {.lex_state = 17}, + [3720] = {.lex_state = 20}, + [3721] = {.lex_state = 17}, + [3722] = {.lex_state = 17}, + [3723] = {.lex_state = 17}, [3724] = {.lex_state = 72}, [3725] = {.lex_state = 72}, [3726] = {.lex_state = 72}, - [3727] = {.lex_state = 17}, - [3728] = {.lex_state = 72}, - [3729] = {.lex_state = 20}, - [3730] = {.lex_state = 20}, - [3731] = {.lex_state = 72}, + [3727] = {.lex_state = 72, .external_lex_state = 8}, + [3728] = {.lex_state = 17}, + [3729] = {.lex_state = 72}, + [3730] = {.lex_state = 72}, + [3731] = {.lex_state = 72, .external_lex_state = 8}, [3732] = {.lex_state = 72}, - [3733] = {.lex_state = 20}, + [3733] = {.lex_state = 72}, [3734] = {.lex_state = 72}, - [3735] = {.lex_state = 72}, - [3736] = {.lex_state = 20}, - [3737] = {.lex_state = 72}, - [3738] = {.lex_state = 167}, + [3735] = {.lex_state = 20}, + [3736] = {.lex_state = 72}, + [3737] = {.lex_state = 72, .external_lex_state = 9}, + [3738] = {.lex_state = 72}, [3739] = {.lex_state = 20}, [3740] = {.lex_state = 20}, - [3741] = {.lex_state = 8}, + [3741] = {.lex_state = 17}, [3742] = {.lex_state = 72}, - [3743] = {.lex_state = 20}, - [3744] = {.lex_state = 20}, - [3745] = {.lex_state = 20}, - [3746] = {.lex_state = 17}, - [3747] = {.lex_state = 17}, - [3748] = {.lex_state = 17}, - [3749] = {.lex_state = 17}, + [3743] = {.lex_state = 72}, + [3744] = {.lex_state = 72}, + [3745] = {.lex_state = 72}, + [3746] = {.lex_state = 73}, + [3747] = {.lex_state = 72}, + [3748] = {.lex_state = 20}, + [3749] = {.lex_state = 72}, [3750] = {.lex_state = 72}, - [3751] = {.lex_state = 23}, + [3751] = {.lex_state = 72}, [3752] = {.lex_state = 72}, - [3753] = {.lex_state = 17}, + [3753] = {.lex_state = 72}, [3754] = {.lex_state = 72}, - [3755] = {.lex_state = 72, .external_lex_state = 7}, - [3756] = {.lex_state = 17}, - [3757] = {.lex_state = 17}, - [3758] = {.lex_state = 73}, + [3755] = {.lex_state = 72}, + [3756] = {.lex_state = 72}, + [3757] = {.lex_state = 72}, + [3758] = {.lex_state = 72}, [3759] = {.lex_state = 72}, [3760] = {.lex_state = 72}, - [3761] = {.lex_state = 17}, - [3762] = {.lex_state = 72, .external_lex_state = 8}, - [3763] = {.lex_state = 72}, - [3764] = {.lex_state = 17}, - [3765] = {.lex_state = 17}, - [3766] = {.lex_state = 72}, - [3767] = {.lex_state = 72}, + [3761] = {.lex_state = 20}, + [3762] = {.lex_state = 20}, + [3763] = {.lex_state = 23}, + [3764] = {.lex_state = 20}, + [3765] = {.lex_state = 72}, + [3766] = {.lex_state = 8}, + [3767] = {.lex_state = 20}, [3768] = {.lex_state = 72}, - [3769] = {.lex_state = 17}, - [3770] = {.lex_state = 72}, - [3771] = {.lex_state = 17}, + [3769] = {.lex_state = 72}, + [3770] = {.lex_state = 20}, + [3771] = {.lex_state = 72}, [3772] = {.lex_state = 17}, - [3773] = {.lex_state = 17}, - [3774] = {.lex_state = 72}, - [3775] = {.lex_state = 17}, - [3776] = {.lex_state = 17}, - [3777] = {.lex_state = 17}, - [3778] = {.lex_state = 17}, - [3779] = {.lex_state = 17}, - [3780] = {(TSStateId)(-1),}, - [3781] = {(TSStateId)(-1),}, - [3782] = {(TSStateId)(-1),}, - [3783] = {(TSStateId)(-1),}, - [3784] = {(TSStateId)(-1),}, - [3785] = {(TSStateId)(-1),}, - [3786] = {(TSStateId)(-1),}, + [3773] = {.lex_state = 20}, + [3774] = {.lex_state = 20}, + [3775] = {.lex_state = 72}, + [3776] = {.lex_state = 72}, + [3777] = {.lex_state = 20}, + [3778] = {.lex_state = 20}, + [3779] = {.lex_state = 20}, + [3780] = {.lex_state = 72}, + [3781] = {.lex_state = 17}, + [3782] = {.lex_state = 72}, + [3783] = {.lex_state = 72}, + [3784] = {.lex_state = 73}, + [3785] = {.lex_state = 72}, + [3786] = {.lex_state = 72}, + [3787] = {.lex_state = 72, .external_lex_state = 8}, + [3788] = {.lex_state = 17}, + [3789] = {.lex_state = 72, .external_lex_state = 7}, + [3790] = {.lex_state = 17}, + [3791] = {.lex_state = 17}, + [3792] = {.lex_state = 17}, + [3793] = {.lex_state = 72}, + [3794] = {.lex_state = 17}, + [3795] = {.lex_state = 17}, + [3796] = {.lex_state = 72}, + [3797] = {.lex_state = 17}, + [3798] = {.lex_state = 72}, + [3799] = {.lex_state = 17}, + [3800] = {.lex_state = 72}, + [3801] = {.lex_state = 17}, + [3802] = {.lex_state = 72}, + [3803] = {.lex_state = 17}, + [3804] = {.lex_state = 17}, + [3805] = {.lex_state = 17}, + [3806] = {.lex_state = 17}, + [3807] = {.lex_state = 17}, + [3808] = {.lex_state = 17}, + [3809] = {.lex_state = 17}, + [3810] = {.lex_state = 72}, + [3811] = {.lex_state = 17}, + [3812] = {.lex_state = 17}, + [3813] = {.lex_state = 72}, + [3814] = {.lex_state = 17}, + [3815] = {.lex_state = 17}, + [3816] = {(TSStateId)(-1),}, + [3817] = {(TSStateId)(-1),}, + [3818] = {(TSStateId)(-1),}, + [3819] = {(TSStateId)(-1),}, + [3820] = {(TSStateId)(-1),}, + [3821] = {(TSStateId)(-1),}, + [3822] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14334,83 +14415,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3596), - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_source_file] = STATE(3607), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14490,89 +14571,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [ts_builtin_sym_end] = ACTIONS(119), [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), @@ -14644,89 +14725,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1906), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [ts_builtin_sym_end] = ACTIONS(119), [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(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14798,89 +14879,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [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(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14952,89 +15033,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -15106,89 +15187,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [ts_builtin_sym_end] = ACTIONS(127), [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(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15260,89 +15341,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [ts_builtin_sym_end] = ACTIONS(129), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [STATE(8)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [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(287), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15413,237 +15648,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(8)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_gen] = ACTIONS(202), - [anon_sym_if] = ACTIONS(205), - [anon_sym_impl] = ACTIONS(208), - [anon_sym_let] = ACTIONS(211), - [anon_sym_loop] = ACTIONS(214), - [anon_sym_match] = ACTIONS(217), - [anon_sym_mod] = ACTIONS(220), - [anon_sym_pub] = ACTIONS(223), - [anon_sym_return] = ACTIONS(226), - [anon_sym_static] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(232), - [anon_sym_trait] = ACTIONS(235), - [anon_sym_type] = ACTIONS(238), - [anon_sym_union] = ACTIONS(241), - [anon_sym_unsafe] = ACTIONS(244), - [anon_sym_use] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(253), - [anon_sym_yield] = ACTIONS(256), - [anon_sym_move] = ACTIONS(259), - [anon_sym_try] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [aux_sym_string_literal_token1] = ACTIONS(268), - [sym_char_literal] = ACTIONS(265), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(274), - [sym_super] = ACTIONS(277), - [sym_crate] = ACTIONS(280), - [sym_metavariable] = ACTIONS(283), - [sym__raw_string_literal_start] = ACTIONS(286), - [sym_float_literal] = ACTIONS(265), - }, [STATE(9)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15722,82 +15803,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15876,82 +15957,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16030,82 +16111,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(428), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [STATE(13)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16183,83 +16418,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(13)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [STATE(14)] = { + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16337,237 +16572,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(14)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(423), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_gen] = ACTIONS(202), - [anon_sym_if] = ACTIONS(205), - [anon_sym_impl] = ACTIONS(208), - [anon_sym_let] = ACTIONS(211), - [anon_sym_loop] = ACTIONS(214), - [anon_sym_match] = ACTIONS(217), - [anon_sym_mod] = ACTIONS(220), - [anon_sym_pub] = ACTIONS(223), - [anon_sym_return] = ACTIONS(226), - [anon_sym_static] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(232), - [anon_sym_trait] = ACTIONS(235), - [anon_sym_type] = ACTIONS(238), - [anon_sym_union] = ACTIONS(241), - [anon_sym_unsafe] = ACTIONS(244), - [anon_sym_use] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(253), - [anon_sym_yield] = ACTIONS(256), - [anon_sym_move] = ACTIONS(259), - [anon_sym_try] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [aux_sym_string_literal_token1] = ACTIONS(268), - [sym_char_literal] = ACTIONS(265), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(274), - [sym_super] = ACTIONS(277), - [sym_crate] = ACTIONS(280), - [sym_metavariable] = ACTIONS(283), - [sym__raw_string_literal_start] = ACTIONS(286), - [sym_float_literal] = ACTIONS(265), - }, [STATE(15)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16646,82 +16727,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16800,82 +16881,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16954,82 +17035,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17108,82 +17189,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17262,82 +17343,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17416,82 +17497,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17570,82 +17651,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17724,82 +17805,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17878,82 +17959,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18032,82 +18113,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18186,82 +18267,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18340,82 +18421,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18494,82 +18575,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18648,82 +18729,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18802,82 +18883,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1914), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18956,82 +19037,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1902), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19110,82 +19191,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19264,82 +19345,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19418,82 +19499,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [sym__statement] = STATE(680), - [sym_empty_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_macro_definition] = STATE(723), - [sym_attribute_item] = STATE(723), - [sym_inner_attribute_item] = STATE(723), - [sym_mod_item] = STATE(723), - [sym_foreign_mod_item] = STATE(723), - [sym_struct_item] = STATE(723), - [sym_union_item] = STATE(723), - [sym_enum_item] = STATE(723), - [sym_extern_crate_declaration] = STATE(723), - [sym_const_item] = STATE(723), - [sym_static_item] = STATE(723), - [sym_type_item] = STATE(723), - [sym_function_item] = STATE(723), - [sym_function_signature_item] = STATE(723), - [sym_function_modifiers] = STATE(3707), - [sym_impl_item] = STATE(723), - [sym_trait_item] = STATE(723), - [sym_associated_type] = STATE(723), - [sym_let_declaration] = STATE(723), - [sym_use_declaration] = STATE(723), - [sym_extern_modifier] = STATE(2228), - [sym_visibility_modifier] = STATE(2013), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(422), - [sym_scoped_identifier] = STATE(1600), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(402), - [sym_match_expression] = STATE(402), - [sym_while_expression] = STATE(402), - [sym_loop_expression] = STATE(402), - [sym_for_expression] = STATE(402), - [sym_const_block] = STATE(402), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3503), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(402), - [sym_async_block] = STATE(402), - [sym_gen_block] = STATE(402), - [sym_try_block] = STATE(402), - [sym_block] = STATE(402), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym__statement] = STATE(573), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3559), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2248), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(399), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(420), + [sym_match_expression] = STATE(420), + [sym_while_expression] = STATE(420), + [sym_loop_expression] = STATE(420), + [sym_for_expression] = STATE(420), + [sym_const_block] = STATE(420), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3562), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(420), + [sym_async_block] = STATE(420), + [sym_gen_block] = STATE(420), + [sym_try_block] = STATE(420), + [sym_block] = STATE(420), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19572,53 +19653,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19720,53 +19801,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1559), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), [sym_label] = STATE(35), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), @@ -19867,53 +19948,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), @@ -20014,53 +20095,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(339), @@ -20161,53 +20242,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), @@ -20308,350 +20389,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(40)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1561), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [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_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(41)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(41), - [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [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(395), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(42)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1564), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(42), - [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(401), @@ -20748,54 +20535,348 @@ 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(41)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(41), + [sym_block_comment] = STATE(41), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_RBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [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(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(395), + [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(395), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(42)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(42), + [sym_block_comment] = STATE(42), + [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_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(43)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20892,63 +20973,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), + [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), @@ -20966,41 +21047,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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), + [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(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_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(395), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21034,57 +21115,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(467), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(397), @@ -21176,342 +21257,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), [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(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(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(493), - [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(48)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), @@ -21539,7 +21336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), @@ -21563,7 +21360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT] = ACTIONS(473), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(415), @@ -21601,59 +21398,59 @@ 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(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [STATE(47)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(383), @@ -21681,7 +21478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(383), [anon_sym_CARET] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_AMP_AMP] = ACTIONS(381), [anon_sym_PIPE_PIPE] = ACTIONS(381), @@ -21705,7 +21502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(381), [anon_sym_LT_EQ] = ACTIONS(381), [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT] = ACTIONS(473), [anon_sym_DOT_DOT_DOT] = ACTIONS(381), [anon_sym_DOT_DOT_EQ] = ACTIONS(381), [anon_sym_COLON_COLON] = ACTIONS(415), @@ -21743,206 +21540,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(50)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(465), - [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(503), - [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(347), - [anon_sym_as] = ACTIONS(347), - [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(51)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), + [STATE(48)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(393), [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(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21960,41 +21615,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(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(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(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -22027,58 +21682,58 @@ 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(52)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), + [STATE(49)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(393), [anon_sym_LBRACK] = ACTIONS(393), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(393), @@ -22169,226 +21824,86 @@ 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(53)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(53), - [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [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(54)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), + [STATE(50)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(397), [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = 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(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_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(503), + [anon_sym_BANG] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -22416,167 +21931,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(471), - [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(399), - [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), + [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(55)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(46), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(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), - [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(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(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(379), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [STATE(51)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(479), + [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(481), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22585,139 +22101,140 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(56)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(56), - [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(401), - [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(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(471), + [STATE(52)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(507), + [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(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -22726,233 +22243,92 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(57)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(57), - [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(465), + [STATE(53)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [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(58)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(465), - [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_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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), [anon_sym_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_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -22980,26 +22356,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(471), - [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -23008,92 +22384,92 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(59)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(393), + [STATE(54)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(393), [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_PLUS] = ACTIONS(395), [anon_sym_STAR] = ACTIONS(395), [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), [anon_sym_DASH] = ACTIONS(395), [anon_sym_SLASH] = ACTIONS(395), [anon_sym_PERCENT] = ACTIONS(395), [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(395), [anon_sym_PIPE] = ACTIONS(395), [anon_sym_AMP_AMP] = ACTIONS(393), @@ -23121,26 +22497,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(395), [anon_sym_DOT_DOT_DOT] = ACTIONS(393), [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -23149,139 +22525,139 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(60)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(60), - [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(465), - [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_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(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_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [STATE(55)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23290,92 +22666,92 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(61)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), + [STATE(56)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(393), [anon_sym_LBRACK] = ACTIONS(393), [anon_sym_LBRACE] = ACTIONS(393), [anon_sym_PLUS] = ACTIONS(395), [anon_sym_STAR] = ACTIONS(395), [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), [anon_sym_DASH] = ACTIONS(395), [anon_sym_SLASH] = ACTIONS(395), [anon_sym_PERCENT] = ACTIONS(395), [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(395), [anon_sym_PIPE] = ACTIONS(395), [anon_sym_AMP_AMP] = ACTIONS(393), @@ -23403,26 +22779,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(395), [anon_sym_DOT_DOT_DOT] = ACTIONS(393), [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -23431,92 +22807,92 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(62)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(62), - [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), + [STATE(57)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(475), + [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_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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), [anon_sym_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_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -23544,26 +22920,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(471), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -23572,139 +22948,562 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(63)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(63), - [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(465), + [STATE(58)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(475), + [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(479), + [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(481), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(59)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(475), + [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(479), + [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(481), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(60)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(51), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(479), + [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(481), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(61)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(381), - [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(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(523), [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23713,92 +23512,92 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(64)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(465), + [STATE(62)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(479), [anon_sym_QMARK] = ACTIONS(381), - [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), [anon_sym_SLASH] = ACTIONS(383), [anon_sym_PERCENT] = ACTIONS(383), [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(479), [anon_sym_AMP] = ACTIONS(523), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_AMP_AMP] = ACTIONS(381), @@ -23826,26 +23625,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(525), [anon_sym_DOT_DOT_DOT] = ACTIONS(381), [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23854,92 +23653,92 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(65)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1669), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(50), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(465), + [STATE(63)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_identifier] = ACTIONS(475), [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), - [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(377), [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), @@ -23967,26 +23766,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(377), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(379), [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -23995,93 +23794,234 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(66)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(66), - [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(465), + [STATE(64)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(65)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(507), [anon_sym_QMARK] = ACTIONS(401), - [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(527), [anon_sym_PIPE] = ACTIONS(387), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), @@ -24105,29 +24045,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT] = ACTIONS(529), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(66)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(383), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -24136,8279 +24217,8279 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [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(140), + [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(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [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_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_RBRACK] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(572), + [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(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [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(592), + [aux_sym_string_literal_token1] = ACTIONS(595), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [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(601), + [sym__raw_string_literal_start] = ACTIONS(604), + [sym_float_literal] = ACTIONS(592), }, [STATE(69)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(70)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(71)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(72)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(73)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(74)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(75)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(76)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(639), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(77)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(78)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(600), - [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(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(639), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(79)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [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(80), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(80)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_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(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(81)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [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(136), - [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__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(82)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym__token_pattern] = STATE(156), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u128] = ACTIONS(607), + [anon_sym_i128] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_str] = ACTIONS(607), + [anon_sym_char] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_async] = ACTIONS(607), + [anon_sym_await] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_gen] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_impl] = ACTIONS(607), + [anon_sym_let] = ACTIONS(607), + [anon_sym_loop] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_mod] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_trait] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_use] = ACTIONS(607), + [anon_sym_where] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [sym_mutable_specifier] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(607), + [sym_super] = ACTIONS(607), + [sym_crate] = ACTIONS(607), + [sym_metavariable] = ACTIONS(629), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(83)] = { - [sym__token_pattern] = STATE(147), - [sym_token_tree_pattern] = STATE(189), - [sym_token_binding_pattern] = STATE(189), - [sym_token_repetition_pattern] = STATE(189), - [sym__literal] = STATE(189), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [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(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(147), + [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(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(147), + [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(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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_token_tree_repeat1] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(86)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(87)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(90), + [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(88)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(91), + [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(89)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(92), + [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(90)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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__non_special_token_repeat1] = STATE(147), + [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(720), + [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(91)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_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(147), + [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(720), + [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(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(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), + [aux_sym__non_special_token_repeat1] = STATE(147), + [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(720), + [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(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(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), + [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(96), + [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(94)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(97), + [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(95)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(98), + [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(96)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(724), + [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(97)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(724), + [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(98)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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__non_special_token_repeat1] = STATE(147), + [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(724), + [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(99)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(102), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(100)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(103), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(101)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(102)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(103)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(104)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(105)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym_token_tree_repeat1] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(133), + [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(106)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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__non_special_token_repeat1] = STATE(147), + [aux_sym_delim_token_tree_repeat1] = STATE(109), + [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(107)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(110), + [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(108)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(109)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym_token_tree_repeat1] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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(147), + [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(110)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym_token_tree_repeat1] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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__non_special_token_repeat1] = STATE(147), + [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(111)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(114), + [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(112)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(115), + [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(113)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(116), + [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(114)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(115)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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(147), + [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(116)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(117)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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_token_tree_repeat1] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(118)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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_token_tree_repeat1] = STATE(132), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(119)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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(147), + [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(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(120)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(124), + [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(121)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym_token_tree_repeat1] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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(147), + [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_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(122)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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), + [aux_sym_token_tree_repeat1] = STATE(108), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(124)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(125)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(126)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(129), + [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(127)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [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(128)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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(147), + [aux_sym_delim_token_tree_repeat1] = STATE(130), + [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(129)] = { - [sym_token_tree] = STATE(177), - [sym_token_repetition] = STATE(177), - [sym__literal] = STATE(177), - [sym_string_literal] = STATE(165), - [sym_raw_string_literal] = STATE(165), - [sym_boolean_literal] = STATE(165), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(141), - [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(147), + [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(130)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(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), + [aux_sym__non_special_token_repeat1] = STATE(147), + [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(131)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_token_tree] = STATE(187), + [sym_token_repetition] = STATE(187), + [sym__literal] = STATE(187), + [sym_string_literal] = STATE(183), + [sym_raw_string_literal] = STATE(183), + [sym_boolean_literal] = STATE(183), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_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_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(625), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(623), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(210), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(202), - [sym_string_literal] = STATE(208), - [sym_raw_string_literal] = STATE(208), - [sym_boolean_literal] = STATE(208), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(210), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [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(147), + [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(134)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1641), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(141), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_RBRACK] = ACTIONS(748), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32434,9 +32515,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(750), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -32471,529 +32552,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(135)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_u8] = ACTIONS(771), + [anon_sym_i8] = ACTIONS(771), + [anon_sym_u16] = ACTIONS(771), + [anon_sym_i16] = ACTIONS(771), + [anon_sym_u32] = ACTIONS(771), + [anon_sym_i32] = ACTIONS(771), + [anon_sym_u64] = ACTIONS(771), + [anon_sym_i64] = ACTIONS(771), + [anon_sym_u128] = ACTIONS(771), + [anon_sym_i128] = ACTIONS(771), + [anon_sym_isize] = ACTIONS(771), + [anon_sym_usize] = ACTIONS(771), + [anon_sym_f32] = ACTIONS(771), + [anon_sym_f64] = ACTIONS(771), + [anon_sym_bool] = ACTIONS(771), + [anon_sym_str] = ACTIONS(771), + [anon_sym_char] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COLON_COLON] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(789), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_async] = ACTIONS(795), + [anon_sym_break] = ACTIONS(798), + [anon_sym_const] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_default] = ACTIONS(807), + [anon_sym_for] = ACTIONS(810), + [anon_sym_gen] = ACTIONS(813), + [anon_sym_if] = ACTIONS(816), + [anon_sym_loop] = ACTIONS(819), + [anon_sym_match] = ACTIONS(822), + [anon_sym_return] = ACTIONS(825), + [anon_sym_static] = ACTIONS(828), + [anon_sym_union] = ACTIONS(807), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_while] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_move] = ACTIONS(840), + [anon_sym_try] = ACTIONS(843), + [sym_integer_literal] = ACTIONS(846), + [aux_sym_string_literal_token1] = ACTIONS(849), + [sym_char_literal] = ACTIONS(846), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(855), + [sym_super] = ACTIONS(858), + [sym_crate] = ACTIONS(858), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(864), + [sym_float_literal] = ACTIONS(846), }, [STATE(136)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(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), + [aux_sym_enum_variant_list_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(867), + [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_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [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(137)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_RBRACE] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(874), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_DOT_DOT] = ACTIONS(874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(872), - [aux_sym_string_literal_token1] = ACTIONS(872), - [sym_char_literal] = ACTIONS(872), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(872), - [sym__raw_string_literal_start] = ACTIONS(872), - [sym_float_literal] = ACTIONS(872), + [aux_sym_enum_variant_list_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(871), + [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_COMMA] = ACTIONS(873), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [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(138)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1683), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [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(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1620), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(134), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(875), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(877), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33019,9 +32983,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(879), + [anon_sym_COMMA] = ACTIONS(877), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33055,62 +33019,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(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(142), + [STATE(139)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [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(879), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(881), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33136,9 +33100,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(883), + [anon_sym_COMMA] = ACTIONS(881), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33172,179 +33136,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(140)] = { + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(609), + [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(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [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(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(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(141)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_RBRACK] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(885), - [anon_sym_i8] = ACTIONS(885), - [anon_sym_u16] = ACTIONS(885), - [anon_sym_i16] = ACTIONS(885), - [anon_sym_u32] = ACTIONS(885), - [anon_sym_i32] = ACTIONS(885), - [anon_sym_u64] = ACTIONS(885), - [anon_sym_i64] = ACTIONS(885), - [anon_sym_u128] = ACTIONS(885), - [anon_sym_i128] = ACTIONS(885), - [anon_sym_isize] = ACTIONS(885), - [anon_sym_usize] = ACTIONS(885), - [anon_sym_f32] = ACTIONS(885), - [anon_sym_f64] = ACTIONS(885), - [anon_sym_bool] = ACTIONS(885), - [anon_sym_str] = ACTIONS(885), - [anon_sym_char] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(885), - [anon_sym_as] = ACTIONS(885), - [anon_sym_async] = ACTIONS(885), - [anon_sym_await] = ACTIONS(885), - [anon_sym_break] = ACTIONS(885), - [anon_sym_const] = ACTIONS(885), - [anon_sym_continue] = ACTIONS(885), - [anon_sym_default] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_fn] = ACTIONS(885), - [anon_sym_for] = ACTIONS(885), - [anon_sym_gen] = ACTIONS(885), - [anon_sym_if] = ACTIONS(885), - [anon_sym_impl] = ACTIONS(885), - [anon_sym_let] = ACTIONS(885), - [anon_sym_loop] = ACTIONS(885), - [anon_sym_match] = ACTIONS(885), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_pub] = ACTIONS(885), - [anon_sym_return] = ACTIONS(885), - [anon_sym_static] = ACTIONS(885), - [anon_sym_struct] = ACTIONS(885), - [anon_sym_trait] = ACTIONS(885), - [anon_sym_type] = ACTIONS(885), - [anon_sym_union] = ACTIONS(885), - [anon_sym_unsafe] = ACTIONS(885), - [anon_sym_use] = ACTIONS(885), - [anon_sym_where] = ACTIONS(885), - [anon_sym_while] = ACTIONS(885), - [sym_mutable_specifier] = ACTIONS(885), - [sym_integer_literal] = ACTIONS(887), - [aux_sym_string_literal_token1] = ACTIONS(887), - [sym_char_literal] = ACTIONS(887), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(885), - [sym_crate] = ACTIONS(885), - [sym_metavariable] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(887), - [sym_float_literal] = ACTIONS(887), - }, - [STATE(142)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1626), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(135), + [aux_sym_enum_variant_list_repeat1] = STATE(143), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(887), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33370,9 +33334,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(891), + [anon_sym_COMMA] = ACTIONS(889), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33406,61 +33370,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(142)] = { + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(893), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(893), + [anon_sym_u8] = ACTIONS(891), + [anon_sym_i8] = ACTIONS(891), + [anon_sym_u16] = ACTIONS(891), + [anon_sym_i16] = ACTIONS(891), + [anon_sym_u32] = ACTIONS(891), + [anon_sym_i32] = ACTIONS(891), + [anon_sym_u64] = ACTIONS(891), + [anon_sym_i64] = ACTIONS(891), + [anon_sym_u128] = ACTIONS(891), + [anon_sym_i128] = ACTIONS(891), + [anon_sym_isize] = ACTIONS(891), + [anon_sym_usize] = ACTIONS(891), + [anon_sym_f32] = ACTIONS(891), + [anon_sym_f64] = ACTIONS(891), + [anon_sym_bool] = ACTIONS(891), + [anon_sym_str] = ACTIONS(891), + [anon_sym_char] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_AT] = ACTIONS(893), + [anon_sym__] = ACTIONS(898), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_as] = ACTIONS(891), + [anon_sym_async] = ACTIONS(891), + [anon_sym_await] = ACTIONS(891), + [anon_sym_break] = ACTIONS(891), + [anon_sym_const] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_default] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_fn] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_gen] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_impl] = ACTIONS(891), + [anon_sym_let] = ACTIONS(891), + [anon_sym_loop] = ACTIONS(891), + [anon_sym_match] = ACTIONS(891), + [anon_sym_mod] = ACTIONS(891), + [anon_sym_pub] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_static] = ACTIONS(891), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_trait] = ACTIONS(891), + [anon_sym_type] = ACTIONS(891), + [anon_sym_union] = ACTIONS(891), + [anon_sym_unsafe] = ACTIONS(891), + [anon_sym_use] = ACTIONS(891), + [anon_sym_where] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [sym_mutable_specifier] = ACTIONS(891), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(891), + [anon_sym_false] = ACTIONS(891), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(891), + [sym_super] = ACTIONS(891), + [sym_crate] = ACTIONS(891), + [sym_metavariable] = ACTIONS(896), + [sym__raw_string_literal_start] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + }, [STATE(143)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_u8] = ACTIONS(771), + [anon_sym_i8] = ACTIONS(771), + [anon_sym_u16] = ACTIONS(771), + [anon_sym_i16] = ACTIONS(771), + [anon_sym_u32] = ACTIONS(771), + [anon_sym_i32] = ACTIONS(771), + [anon_sym_u64] = ACTIONS(771), + [anon_sym_i64] = ACTIONS(771), + [anon_sym_u128] = ACTIONS(771), + [anon_sym_i128] = ACTIONS(771), + [anon_sym_isize] = ACTIONS(771), + [anon_sym_usize] = ACTIONS(771), + [anon_sym_f32] = ACTIONS(771), + [anon_sym_f64] = ACTIONS(771), + [anon_sym_bool] = ACTIONS(771), + [anon_sym_str] = ACTIONS(771), + [anon_sym_char] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COLON_COLON] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(789), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_async] = ACTIONS(795), + [anon_sym_break] = ACTIONS(798), + [anon_sym_const] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_default] = ACTIONS(807), + [anon_sym_for] = ACTIONS(810), + [anon_sym_gen] = ACTIONS(813), + [anon_sym_if] = ACTIONS(816), + [anon_sym_loop] = ACTIONS(819), + [anon_sym_match] = ACTIONS(822), + [anon_sym_return] = ACTIONS(825), + [anon_sym_static] = ACTIONS(828), + [anon_sym_union] = ACTIONS(807), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_while] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_move] = ACTIONS(840), + [anon_sym_try] = ACTIONS(843), + [sym_integer_literal] = ACTIONS(846), + [aux_sym_string_literal_token1] = ACTIONS(849), + [sym_char_literal] = ACTIONS(846), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(855), + [sym_super] = ACTIONS(858), + [sym_crate] = ACTIONS(858), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(864), + [sym_float_literal] = ACTIONS(846), + }, + [STATE(144)] = { + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_gen] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_union] = ACTIONS(901), + [anon_sym_unsafe] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [sym_mutable_specifier] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_crate] = ACTIONS(901), + [sym_metavariable] = ACTIONS(903), + [sym__raw_string_literal_start] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), + }, + [STATE(145)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(905), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -33487,9 +33802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(895), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33523,224 +33837,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(144)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(897), - [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_COMMA] = ACTIONS(899), - [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(145)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(339), + [STATE(146)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2645), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(901), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -33749,596 +33946,132 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(146)] = { - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [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(903), - [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(147)] = { [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_EQ_GT] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_QMARK] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(905), - [anon_sym_i8] = ACTIONS(905), - [anon_sym_u16] = ACTIONS(905), - [anon_sym_i16] = ACTIONS(905), - [anon_sym_u32] = ACTIONS(905), - [anon_sym_i32] = ACTIONS(905), - [anon_sym_u64] = ACTIONS(905), - [anon_sym_i64] = ACTIONS(905), - [anon_sym_u128] = ACTIONS(905), - [anon_sym_i128] = ACTIONS(905), - [anon_sym_isize] = ACTIONS(905), - [anon_sym_usize] = ACTIONS(905), - [anon_sym_f32] = ACTIONS(905), - [anon_sym_f64] = ACTIONS(905), - [anon_sym_bool] = ACTIONS(905), - [anon_sym_str] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(905), - [anon_sym_PERCENT] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - [anon_sym_STAR_EQ] = ACTIONS(907), - [anon_sym_SLASH_EQ] = ACTIONS(907), - [anon_sym_PERCENT_EQ] = ACTIONS(907), - [anon_sym_CARET_EQ] = ACTIONS(907), - [anon_sym_AMP_EQ] = ACTIONS(907), - [anon_sym_PIPE_EQ] = ACTIONS(907), - [anon_sym_LT_LT_EQ] = ACTIONS(907), - [anon_sym_GT_GT_EQ] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), - [anon_sym__] = ACTIONS(905), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(907), - [anon_sym_DASH_GT] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(907), - [anon_sym_SQUOTE] = ACTIONS(905), - [anon_sym_as] = ACTIONS(905), - [anon_sym_async] = ACTIONS(905), - [anon_sym_await] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_const] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_fn] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_gen] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_impl] = ACTIONS(905), - [anon_sym_let] = ACTIONS(905), - [anon_sym_loop] = ACTIONS(905), - [anon_sym_match] = ACTIONS(905), - [anon_sym_mod] = ACTIONS(905), - [anon_sym_pub] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_struct] = ACTIONS(905), - [anon_sym_trait] = ACTIONS(905), - [anon_sym_type] = ACTIONS(905), - [anon_sym_union] = ACTIONS(905), - [anon_sym_unsafe] = ACTIONS(905), - [anon_sym_use] = ACTIONS(905), - [anon_sym_where] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [sym_mutable_specifier] = ACTIONS(905), - [sym_integer_literal] = ACTIONS(907), - [aux_sym_string_literal_token1] = ACTIONS(907), - [sym_char_literal] = ACTIONS(907), - [anon_sym_true] = ACTIONS(905), - [anon_sym_false] = ACTIONS(905), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(905), - [sym_super] = ACTIONS(905), - [sym_crate] = ACTIONS(905), - [sym_metavariable] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(907), - [sym_float_literal] = ACTIONS(907), + [aux_sym__non_special_token_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(680), + [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(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [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(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(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(148)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2706), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(149)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2735), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(150)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym_enum_variant_list_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(151)] = { - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), [sym_identifier] = ACTIONS(919), [anon_sym_SEMI] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(921), @@ -34452,9 +34185,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(921), [sym_float_literal] = ACTIONS(921), }, - [STATE(152)] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), + [STATE(149)] = { + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), [sym_identifier] = ACTIONS(923), [anon_sym_SEMI] = ACTIONS(925), [anon_sym_LPAREN] = ACTIONS(925), @@ -34568,9 +34301,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(925), [sym_float_literal] = ACTIONS(925), }, - [STATE(153)] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), + [STATE(150)] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), [sym_identifier] = ACTIONS(927), [anon_sym_SEMI] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(929), @@ -34684,62 +34417,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(929), [sym_float_literal] = ACTIONS(929), }, - [STATE(154)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [STATE(151)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(931), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34766,7 +34499,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -34800,107 +34533,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(155)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(339), + [STATE(152)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2771), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(933), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -34909,68 +34642,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(156)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [STATE(153)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -34998,7 +34731,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -35032,9 +34765,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(157)] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), + [STATE(154)] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [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(155)] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [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(935), + [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(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), @@ -35148,339 +35113,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(939), [sym_float_literal] = ACTIONS(939), }, - [STATE(158)] = { - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [sym_identifier] = ACTIONS(941), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_RBRACK] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_COLON] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(941), - [anon_sym_i8] = ACTIONS(941), - [anon_sym_u16] = ACTIONS(941), - [anon_sym_i16] = ACTIONS(941), - [anon_sym_u32] = ACTIONS(941), - [anon_sym_i32] = ACTIONS(941), - [anon_sym_u64] = ACTIONS(941), - [anon_sym_i64] = ACTIONS(941), - [anon_sym_u128] = ACTIONS(941), - [anon_sym_i128] = ACTIONS(941), - [anon_sym_isize] = ACTIONS(941), - [anon_sym_usize] = ACTIONS(941), - [anon_sym_f32] = ACTIONS(941), - [anon_sym_f64] = ACTIONS(941), - [anon_sym_bool] = ACTIONS(941), - [anon_sym_str] = ACTIONS(941), - [anon_sym_char] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_PERCENT] = ACTIONS(941), - [anon_sym_CARET] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT_LT] = ACTIONS(941), - [anon_sym_GT_GT] = ACTIONS(941), - [anon_sym_PLUS_EQ] = ACTIONS(943), - [anon_sym_DASH_EQ] = ACTIONS(943), - [anon_sym_STAR_EQ] = ACTIONS(943), - [anon_sym_SLASH_EQ] = ACTIONS(943), - [anon_sym_PERCENT_EQ] = ACTIONS(943), - [anon_sym_CARET_EQ] = ACTIONS(943), - [anon_sym_AMP_EQ] = ACTIONS(943), - [anon_sym_PIPE_EQ] = ACTIONS(943), - [anon_sym_LT_LT_EQ] = ACTIONS(943), - [anon_sym_GT_GT_EQ] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(941), - [anon_sym_EQ_EQ] = ACTIONS(943), - [anon_sym_BANG_EQ] = ACTIONS(943), - [anon_sym_GT] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT_EQ] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(943), - [anon_sym_AT] = ACTIONS(943), - [anon_sym__] = ACTIONS(941), - [anon_sym_DOT] = ACTIONS(941), - [anon_sym_DOT_DOT] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(943), - [anon_sym_COMMA] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(943), - [anon_sym_DASH_GT] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(943), - [anon_sym_SQUOTE] = ACTIONS(941), - [anon_sym_as] = ACTIONS(941), - [anon_sym_async] = ACTIONS(941), - [anon_sym_await] = ACTIONS(941), - [anon_sym_break] = ACTIONS(941), - [anon_sym_const] = ACTIONS(941), - [anon_sym_continue] = ACTIONS(941), - [anon_sym_default] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(941), - [anon_sym_fn] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_gen] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_impl] = ACTIONS(941), - [anon_sym_let] = ACTIONS(941), - [anon_sym_loop] = ACTIONS(941), - [anon_sym_match] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_pub] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_static] = ACTIONS(941), - [anon_sym_struct] = ACTIONS(941), - [anon_sym_trait] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_union] = ACTIONS(941), - [anon_sym_unsafe] = ACTIONS(941), - [anon_sym_use] = ACTIONS(941), - [anon_sym_where] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [sym_mutable_specifier] = ACTIONS(941), - [sym_integer_literal] = ACTIONS(943), - [aux_sym_string_literal_token1] = ACTIONS(943), - [sym_char_literal] = ACTIONS(943), - [anon_sym_true] = ACTIONS(941), - [anon_sym_false] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(941), - [sym_super] = ACTIONS(941), - [sym_crate] = ACTIONS(941), - [sym_metavariable] = ACTIONS(943), - [sym__raw_string_literal_start] = ACTIONS(943), - [sym_float_literal] = ACTIONS(943), - }, - [STATE(159)] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [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(945), - [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_metavariable] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), - }, - [STATE(160)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2785), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym_identifier] = ACTIONS(465), + [STATE(157)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(941), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), [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(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_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), @@ -35489,69 +35222,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(158)] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_u8] = ACTIONS(943), + [anon_sym_i8] = ACTIONS(943), + [anon_sym_u16] = ACTIONS(943), + [anon_sym_i16] = ACTIONS(943), + [anon_sym_u32] = ACTIONS(943), + [anon_sym_i32] = ACTIONS(943), + [anon_sym_u64] = ACTIONS(943), + [anon_sym_i64] = ACTIONS(943), + [anon_sym_u128] = ACTIONS(943), + [anon_sym_i128] = ACTIONS(943), + [anon_sym_isize] = ACTIONS(943), + [anon_sym_usize] = ACTIONS(943), + [anon_sym_f32] = ACTIONS(943), + [anon_sym_f64] = ACTIONS(943), + [anon_sym_bool] = ACTIONS(943), + [anon_sym_str] = ACTIONS(943), + [anon_sym_char] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_PLUS_EQ] = ACTIONS(945), + [anon_sym_DASH_EQ] = ACTIONS(945), + [anon_sym_STAR_EQ] = ACTIONS(945), + [anon_sym_SLASH_EQ] = ACTIONS(945), + [anon_sym_PERCENT_EQ] = ACTIONS(945), + [anon_sym_CARET_EQ] = ACTIONS(945), + [anon_sym_AMP_EQ] = ACTIONS(945), + [anon_sym_PIPE_EQ] = ACTIONS(945), + [anon_sym_LT_LT_EQ] = ACTIONS(945), + [anon_sym_GT_GT_EQ] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym__] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(945), + [anon_sym_DASH_GT] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_as] = ACTIONS(943), + [anon_sym_async] = ACTIONS(943), + [anon_sym_await] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_const] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [anon_sym_fn] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_gen] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_impl] = ACTIONS(943), + [anon_sym_let] = ACTIONS(943), + [anon_sym_loop] = ACTIONS(943), + [anon_sym_match] = ACTIONS(943), + [anon_sym_mod] = ACTIONS(943), + [anon_sym_pub] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_static] = ACTIONS(943), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(943), + [anon_sym_type] = ACTIONS(943), + [anon_sym_union] = ACTIONS(943), + [anon_sym_unsafe] = ACTIONS(943), + [anon_sym_use] = ACTIONS(943), + [anon_sym_where] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [sym_mutable_specifier] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(945), + [aux_sym_string_literal_token1] = ACTIONS(945), + [sym_char_literal] = ACTIONS(945), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_crate] = ACTIONS(943), + [sym_metavariable] = ACTIONS(945), + [sym__raw_string_literal_start] = ACTIONS(945), + [sym_float_literal] = ACTIONS(945), + }, + [STATE(159)] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(949), + [anon_sym_u8] = ACTIONS(947), + [anon_sym_i8] = ACTIONS(947), + [anon_sym_u16] = ACTIONS(947), + [anon_sym_i16] = ACTIONS(947), + [anon_sym_u32] = ACTIONS(947), + [anon_sym_i32] = ACTIONS(947), + [anon_sym_u64] = ACTIONS(947), + [anon_sym_i64] = ACTIONS(947), + [anon_sym_u128] = ACTIONS(947), + [anon_sym_i128] = ACTIONS(947), + [anon_sym_isize] = ACTIONS(947), + [anon_sym_usize] = ACTIONS(947), + [anon_sym_f32] = ACTIONS(947), + [anon_sym_f64] = ACTIONS(947), + [anon_sym_bool] = ACTIONS(947), + [anon_sym_str] = ACTIONS(947), + [anon_sym_char] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(949), + [anon_sym_LT_LT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(949), + [anon_sym_DASH_EQ] = ACTIONS(949), + [anon_sym_STAR_EQ] = ACTIONS(949), + [anon_sym_SLASH_EQ] = ACTIONS(949), + [anon_sym_PERCENT_EQ] = ACTIONS(949), + [anon_sym_CARET_EQ] = ACTIONS(949), + [anon_sym_AMP_EQ] = ACTIONS(949), + [anon_sym_PIPE_EQ] = ACTIONS(949), + [anon_sym_LT_LT_EQ] = ACTIONS(949), + [anon_sym_GT_GT_EQ] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym__] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(949), + [anon_sym_COLON_COLON] = ACTIONS(949), + [anon_sym_DASH_GT] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_as] = ACTIONS(947), + [anon_sym_async] = ACTIONS(947), + [anon_sym_await] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_const] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_gen] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_impl] = ACTIONS(947), + [anon_sym_let] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(947), + [anon_sym_match] = ACTIONS(947), + [anon_sym_mod] = ACTIONS(947), + [anon_sym_pub] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_static] = ACTIONS(947), + [anon_sym_struct] = ACTIONS(947), + [anon_sym_trait] = ACTIONS(947), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(947), + [anon_sym_unsafe] = ACTIONS(947), + [anon_sym_use] = ACTIONS(947), + [anon_sym_where] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [sym_mutable_specifier] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(949), + [aux_sym_string_literal_token1] = ACTIONS(949), + [sym_char_literal] = ACTIONS(949), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_crate] = ACTIONS(947), + [sym_metavariable] = ACTIONS(949), + [sym__raw_string_literal_start] = ACTIONS(949), + [sym_float_literal] = ACTIONS(949), + }, + [STATE(160)] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_identifier] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(951), + [anon_sym_i8] = ACTIONS(951), + [anon_sym_u16] = ACTIONS(951), + [anon_sym_i16] = ACTIONS(951), + [anon_sym_u32] = ACTIONS(951), + [anon_sym_i32] = ACTIONS(951), + [anon_sym_u64] = ACTIONS(951), + [anon_sym_i64] = ACTIONS(951), + [anon_sym_u128] = ACTIONS(951), + [anon_sym_i128] = ACTIONS(951), + [anon_sym_isize] = ACTIONS(951), + [anon_sym_usize] = ACTIONS(951), + [anon_sym_f32] = ACTIONS(951), + [anon_sym_f64] = ACTIONS(951), + [anon_sym_bool] = ACTIONS(951), + [anon_sym_str] = ACTIONS(951), + [anon_sym_char] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(953), + [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym__] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_COLON_COLON] = ACTIONS(953), + [anon_sym_DASH_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(953), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_async] = ACTIONS(951), + [anon_sym_await] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_default] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_gen] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_mod] = ACTIONS(951), + [anon_sym_pub] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_static] = ACTIONS(951), + [anon_sym_struct] = ACTIONS(951), + [anon_sym_trait] = ACTIONS(951), + [anon_sym_type] = ACTIONS(951), + [anon_sym_union] = ACTIONS(951), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_where] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [sym_mutable_specifier] = ACTIONS(951), + [sym_integer_literal] = ACTIONS(953), + [aux_sym_string_literal_token1] = ACTIONS(953), + [sym_char_literal] = ACTIONS(953), + [anon_sym_true] = ACTIONS(951), + [anon_sym_false] = ACTIONS(951), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_crate] = ACTIONS(951), + [sym_metavariable] = ACTIONS(953), + [sym__raw_string_literal_start] = ACTIONS(953), + [sym_float_literal] = ACTIONS(953), + }, [STATE(161)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(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(162)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(959), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35578,7 +35775,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -35612,62 +35809,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(162)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [STATE(163)] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [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(164)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(965), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35694,7 +36007,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -35728,525 +36041,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(163)] = { - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [aux_sym__non_special_token_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_RBRACE] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_PERCENT] = ACTIONS(956), - [anon_sym_CARET] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(956), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(956), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(956), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(872), - [aux_sym_string_literal_token1] = ACTIONS(872), - [sym_char_literal] = ACTIONS(872), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym__raw_string_literal_start] = ACTIONS(872), - [sym_float_literal] = ACTIONS(872), - }, - [STATE(164)] = { - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(959), - [anon_sym_i8] = ACTIONS(959), - [anon_sym_u16] = ACTIONS(959), - [anon_sym_i16] = ACTIONS(959), - [anon_sym_u32] = ACTIONS(959), - [anon_sym_i32] = ACTIONS(959), - [anon_sym_u64] = ACTIONS(959), - [anon_sym_i64] = ACTIONS(959), - [anon_sym_u128] = ACTIONS(959), - [anon_sym_i128] = ACTIONS(959), - [anon_sym_isize] = ACTIONS(959), - [anon_sym_usize] = ACTIONS(959), - [anon_sym_f32] = ACTIONS(959), - [anon_sym_f64] = ACTIONS(959), - [anon_sym_bool] = ACTIONS(959), - [anon_sym_str] = ACTIONS(959), - [anon_sym_char] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_COLON_COLON] = ACTIONS(961), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_default] = ACTIONS(959), - [anon_sym_enum] = ACTIONS(959), - [anon_sym_fn] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_gen] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_impl] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_pub] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(959), - [anon_sym_type] = ACTIONS(959), - [anon_sym_union] = ACTIONS(959), - [anon_sym_unsafe] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [sym_mutable_specifier] = ACTIONS(959), - [sym_integer_literal] = ACTIONS(961), - [aux_sym_string_literal_token1] = ACTIONS(961), - [sym_char_literal] = ACTIONS(961), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_crate] = ACTIONS(959), - [sym_metavariable] = ACTIONS(961), - [sym__raw_string_literal_start] = ACTIONS(961), - [sym_float_literal] = ACTIONS(961), - }, [STATE(165)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(965), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_EQ_GT] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_PERCENT_EQ] = ACTIONS(965), - [anon_sym_CARET_EQ] = ACTIONS(965), - [anon_sym_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_EQ] = ACTIONS(965), - [anon_sym_LT_LT_EQ] = ACTIONS(965), - [anon_sym_GT_GT_EQ] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym__] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(965), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_COLON_COLON] = ACTIONS(965), - [anon_sym_DASH_GT] = ACTIONS(965), - [anon_sym_POUND] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_as] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_await] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_default] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [anon_sym_fn] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_gen] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_impl] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_loop] = ACTIONS(963), - [anon_sym_match] = ACTIONS(963), - [anon_sym_mod] = ACTIONS(963), - [anon_sym_pub] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_static] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_trait] = ACTIONS(963), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(963), - [anon_sym_unsafe] = ACTIONS(963), - [anon_sym_use] = ACTIONS(963), - [anon_sym_where] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [sym_mutable_specifier] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(965), - [aux_sym_string_literal_token1] = ACTIONS(965), - [sym_char_literal] = ACTIONS(965), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), - [sym__raw_string_literal_start] = ACTIONS(965), - [sym_float_literal] = ACTIONS(965), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(967), + [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(752), + [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(166)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_let_condition] = STATE(3388), - [sym__let_chain] = STATE(3389), - [sym__condition] = STATE(3536), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_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(167)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -36274,7 +36355,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -36309,50 +36390,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(168)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(977), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [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), + [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(752), + [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(169)] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(975), + [anon_sym_i8] = ACTIONS(975), + [anon_sym_u16] = ACTIONS(975), + [anon_sym_i16] = ACTIONS(975), + [anon_sym_u32] = ACTIONS(975), + [anon_sym_i32] = ACTIONS(975), + [anon_sym_u64] = ACTIONS(975), + [anon_sym_i64] = ACTIONS(975), + [anon_sym_u128] = ACTIONS(975), + [anon_sym_i128] = ACTIONS(975), + [anon_sym_isize] = ACTIONS(975), + [anon_sym_usize] = ACTIONS(975), + [anon_sym_f32] = ACTIONS(975), + [anon_sym_f64] = ACTIONS(975), + [anon_sym_bool] = ACTIONS(975), + [anon_sym_str] = ACTIONS(975), + [anon_sym_char] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(977), + [anon_sym_PIPE_PIPE] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PERCENT_EQ] = ACTIONS(977), + [anon_sym_CARET_EQ] = ACTIONS(977), + [anon_sym_AMP_EQ] = ACTIONS(977), + [anon_sym_PIPE_EQ] = ACTIONS(977), + [anon_sym_LT_LT_EQ] = ACTIONS(977), + [anon_sym_GT_GT_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym__] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(977), + [anon_sym_DASH_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_async] = ACTIONS(975), + [anon_sym_await] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_default] = ACTIONS(975), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_fn] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_gen] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_impl] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(975), + [anon_sym_pub] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_static] = ACTIONS(975), + [anon_sym_struct] = ACTIONS(975), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(975), + [anon_sym_union] = ACTIONS(975), + [anon_sym_unsafe] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_where] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [sym_mutable_specifier] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(977), + [aux_sym_string_literal_token1] = ACTIONS(977), + [sym_char_literal] = ACTIONS(977), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(975), + [sym_super] = ACTIONS(975), + [sym_crate] = ACTIONS(975), + [sym_metavariable] = ACTIONS(977), + [sym__raw_string_literal_start] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), + }, + [STATE(170)] = { + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [aux_sym__non_special_token_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(891), [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(977), - [anon_sym_i8] = ACTIONS(977), - [anon_sym_u16] = ACTIONS(977), - [anon_sym_i16] = ACTIONS(977), - [anon_sym_u32] = ACTIONS(977), - [anon_sym_i32] = ACTIONS(977), - [anon_sym_u64] = ACTIONS(977), - [anon_sym_i64] = ACTIONS(977), - [anon_sym_u128] = ACTIONS(977), - [anon_sym_i128] = ACTIONS(977), - [anon_sym_isize] = ACTIONS(977), - [anon_sym_usize] = ACTIONS(977), - [anon_sym_f32] = ACTIONS(977), - [anon_sym_f64] = ACTIONS(977), - [anon_sym_bool] = ACTIONS(977), - [anon_sym_str] = ACTIONS(977), - [anon_sym_char] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(891), + [anon_sym_i8] = ACTIONS(891), + [anon_sym_u16] = ACTIONS(891), + [anon_sym_i16] = ACTIONS(891), + [anon_sym_u32] = ACTIONS(891), + [anon_sym_i32] = ACTIONS(891), + [anon_sym_u64] = ACTIONS(891), + [anon_sym_i64] = ACTIONS(891), + [anon_sym_u128] = ACTIONS(891), + [anon_sym_i128] = ACTIONS(891), + [anon_sym_isize] = ACTIONS(891), + [anon_sym_usize] = ACTIONS(891), + [anon_sym_f32] = ACTIONS(891), + [anon_sym_f64] = ACTIONS(891), + [anon_sym_bool] = ACTIONS(891), + [anon_sym_str] = ACTIONS(891), + [anon_sym_char] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym_PERCENT] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), [anon_sym_AMP_AMP] = ACTIONS(979), [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), [anon_sym_PLUS_EQ] = ACTIONS(979), [anon_sym_DASH_EQ] = ACTIONS(979), [anon_sym_STAR_EQ] = ACTIONS(979), @@ -36363,186 +36677,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(979), [anon_sym_LT_LT_EQ] = ACTIONS(979), [anon_sym_GT_GT_EQ] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(982), [anon_sym_EQ_EQ] = ACTIONS(979), [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(982), [anon_sym_GT_EQ] = ACTIONS(979), [anon_sym_LT_EQ] = ACTIONS(979), [anon_sym_AT] = ACTIONS(979), - [anon_sym__] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym__] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(982), [anon_sym_DOT_DOT_DOT] = ACTIONS(979), [anon_sym_DOT_DOT_EQ] = ACTIONS(979), [anon_sym_COMMA] = ACTIONS(979), [anon_sym_COLON_COLON] = ACTIONS(979), [anon_sym_DASH_GT] = ACTIONS(979), [anon_sym_POUND] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(977), - [anon_sym_as] = ACTIONS(977), - [anon_sym_async] = ACTIONS(977), - [anon_sym_await] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_const] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_default] = ACTIONS(977), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_fn] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_gen] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_impl] = ACTIONS(977), - [anon_sym_let] = ACTIONS(977), - [anon_sym_loop] = ACTIONS(977), - [anon_sym_match] = ACTIONS(977), - [anon_sym_mod] = ACTIONS(977), - [anon_sym_pub] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_static] = ACTIONS(977), - [anon_sym_struct] = ACTIONS(977), - [anon_sym_trait] = ACTIONS(977), - [anon_sym_type] = ACTIONS(977), - [anon_sym_union] = ACTIONS(977), - [anon_sym_unsafe] = ACTIONS(977), - [anon_sym_use] = ACTIONS(977), - [anon_sym_where] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [sym_mutable_specifier] = ACTIONS(977), - [sym_integer_literal] = ACTIONS(979), - [aux_sym_string_literal_token1] = ACTIONS(979), - [sym_char_literal] = ACTIONS(979), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(977), - [sym_metavariable] = ACTIONS(979), - [sym__raw_string_literal_start] = ACTIONS(979), - [sym_float_literal] = ACTIONS(979), - }, - [STATE(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_RBRACK] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_EQ_GT] = ACTIONS(983), - [anon_sym_COLON] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_STAR] = ACTIONS(981), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_u8] = ACTIONS(981), - [anon_sym_i8] = ACTIONS(981), - [anon_sym_u16] = ACTIONS(981), - [anon_sym_i16] = ACTIONS(981), - [anon_sym_u32] = ACTIONS(981), - [anon_sym_i32] = ACTIONS(981), - [anon_sym_u64] = ACTIONS(981), - [anon_sym_i64] = ACTIONS(981), - [anon_sym_u128] = ACTIONS(981), - [anon_sym_i128] = ACTIONS(981), - [anon_sym_isize] = ACTIONS(981), - [anon_sym_usize] = ACTIONS(981), - [anon_sym_f32] = ACTIONS(981), - [anon_sym_f64] = ACTIONS(981), - [anon_sym_bool] = ACTIONS(981), - [anon_sym_str] = ACTIONS(981), - [anon_sym_char] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_PLUS_EQ] = ACTIONS(983), - [anon_sym_DASH_EQ] = ACTIONS(983), - [anon_sym_STAR_EQ] = ACTIONS(983), - [anon_sym_SLASH_EQ] = ACTIONS(983), - [anon_sym_PERCENT_EQ] = ACTIONS(983), - [anon_sym_CARET_EQ] = ACTIONS(983), - [anon_sym_AMP_EQ] = ACTIONS(983), - [anon_sym_PIPE_EQ] = ACTIONS(983), - [anon_sym_LT_LT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_EQ] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), - [anon_sym__] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(983), - [anon_sym_DASH_GT] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(981), - [anon_sym_as] = ACTIONS(981), - [anon_sym_async] = ACTIONS(981), - [anon_sym_await] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_const] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_default] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_gen] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_impl] = ACTIONS(981), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(981), - [anon_sym_match] = ACTIONS(981), - [anon_sym_mod] = ACTIONS(981), - [anon_sym_pub] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_static] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(981), - [anon_sym_type] = ACTIONS(981), - [anon_sym_union] = ACTIONS(981), - [anon_sym_unsafe] = ACTIONS(981), - [anon_sym_use] = ACTIONS(981), - [anon_sym_where] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [sym_mutable_specifier] = ACTIONS(981), - [sym_integer_literal] = ACTIONS(983), - [aux_sym_string_literal_token1] = ACTIONS(983), - [sym_char_literal] = ACTIONS(983), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(981), - [sym_super] = ACTIONS(981), - [sym_crate] = ACTIONS(981), - [sym_metavariable] = ACTIONS(983), - [sym__raw_string_literal_start] = ACTIONS(983), - [sym_float_literal] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_as] = ACTIONS(891), + [anon_sym_async] = ACTIONS(891), + [anon_sym_await] = ACTIONS(891), + [anon_sym_break] = ACTIONS(891), + [anon_sym_const] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_default] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_fn] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_gen] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_impl] = ACTIONS(891), + [anon_sym_let] = ACTIONS(891), + [anon_sym_loop] = ACTIONS(891), + [anon_sym_match] = ACTIONS(891), + [anon_sym_mod] = ACTIONS(891), + [anon_sym_pub] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_static] = ACTIONS(891), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_trait] = ACTIONS(891), + [anon_sym_type] = ACTIONS(891), + [anon_sym_union] = ACTIONS(891), + [anon_sym_unsafe] = ACTIONS(891), + [anon_sym_use] = ACTIONS(891), + [anon_sym_where] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [sym_mutable_specifier] = ACTIONS(891), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(891), + [anon_sym_false] = ACTIONS(891), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(891), + [sym_super] = ACTIONS(891), + [sym_crate] = ACTIONS(891), + [sym__raw_string_literal_start] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), }, - [STATE(170)] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), + [STATE(171)] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), [sym_identifier] = ACTIONS(985), [anon_sym_SEMI] = ACTIONS(987), [anon_sym_LPAREN] = ACTIONS(987), @@ -36656,294 +36853,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(987), [sym_float_literal] = ACTIONS(987), }, - [STATE(171)] = { - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_gen] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym_metavariable] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, [STATE(172)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1953), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_let_condition] = STATE(3361), + [sym__let_chain] = STATE(3362), + [sym__condition] = STATE(3526), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [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_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), + [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(173)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(997), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(997), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36970,7 +37051,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -37005,61 +37086,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(174)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_EQ_GT] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_u8] = ACTIONS(999), + [anon_sym_i8] = ACTIONS(999), + [anon_sym_u16] = ACTIONS(999), + [anon_sym_i16] = ACTIONS(999), + [anon_sym_u32] = ACTIONS(999), + [anon_sym_i32] = ACTIONS(999), + [anon_sym_u64] = ACTIONS(999), + [anon_sym_i64] = ACTIONS(999), + [anon_sym_u128] = ACTIONS(999), + [anon_sym_i128] = ACTIONS(999), + [anon_sym_isize] = ACTIONS(999), + [anon_sym_usize] = ACTIONS(999), + [anon_sym_f32] = ACTIONS(999), + [anon_sym_f64] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_str] = ACTIONS(999), + [anon_sym_char] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(999), + [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_PERCENT_EQ] = ACTIONS(1001), + [anon_sym_CARET_EQ] = ACTIONS(1001), + [anon_sym_AMP_EQ] = ACTIONS(1001), + [anon_sym_PIPE_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_GT_EQ] = ACTIONS(1001), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym__] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_COLON_COLON] = ACTIONS(1001), + [anon_sym_DASH_GT] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_as] = ACTIONS(999), + [anon_sym_async] = ACTIONS(999), + [anon_sym_await] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_const] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_default] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [anon_sym_fn] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_gen] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_impl] = ACTIONS(999), + [anon_sym_let] = ACTIONS(999), + [anon_sym_loop] = ACTIONS(999), + [anon_sym_match] = ACTIONS(999), + [anon_sym_mod] = ACTIONS(999), + [anon_sym_pub] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_static] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_trait] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_union] = ACTIONS(999), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_use] = ACTIONS(999), + [anon_sym_where] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [sym_mutable_specifier] = ACTIONS(999), + [sym_integer_literal] = ACTIONS(1001), + [aux_sym_string_literal_token1] = ACTIONS(1001), + [sym_char_literal] = ACTIONS(1001), + [anon_sym_true] = ACTIONS(999), + [anon_sym_false] = ACTIONS(999), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(999), + [sym_metavariable] = ACTIONS(1001), + [sym__raw_string_literal_start] = ACTIONS(1001), + [sym_float_literal] = ACTIONS(1001), + }, + [STATE(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_EQ_GT] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u128] = ACTIONS(1003), + [anon_sym_i128] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_str] = ACTIONS(1003), + [anon_sym_char] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_STAR_EQ] = ACTIONS(1005), + [anon_sym_SLASH_EQ] = ACTIONS(1005), + [anon_sym_PERCENT_EQ] = ACTIONS(1005), + [anon_sym_CARET_EQ] = ACTIONS(1005), + [anon_sym_AMP_EQ] = ACTIONS(1005), + [anon_sym_PIPE_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_GT_EQ] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym__] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_COMMA] = ACTIONS(1005), + [anon_sym_COLON_COLON] = ACTIONS(1005), + [anon_sym_DASH_GT] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(1005), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1003), + [anon_sym_async] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_default] = ACTIONS(1003), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_gen] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_impl] = ACTIONS(1003), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_loop] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_mod] = ACTIONS(1003), + [anon_sym_pub] = ACTIONS(1003), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_trait] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1003), + [anon_sym_union] = ACTIONS(1003), + [anon_sym_unsafe] = ACTIONS(1003), + [anon_sym_use] = ACTIONS(1003), + [anon_sym_where] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [sym_mutable_specifier] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(1005), + [aux_sym_string_literal_token1] = ACTIONS(1005), + [sym_char_literal] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1003), + [sym_super] = ACTIONS(1003), + [sym_crate] = ACTIONS(1003), + [sym_metavariable] = ACTIONS(1005), + [sym__raw_string_literal_start] = ACTIONS(1005), + [sym_float_literal] = ACTIONS(1005), + }, + [STATE(176)] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_RBRACK] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_EQ_GT] = ACTIONS(1009), + [anon_sym_COLON] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_u8] = ACTIONS(1007), + [anon_sym_i8] = ACTIONS(1007), + [anon_sym_u16] = ACTIONS(1007), + [anon_sym_i16] = ACTIONS(1007), + [anon_sym_u32] = ACTIONS(1007), + [anon_sym_i32] = ACTIONS(1007), + [anon_sym_u64] = ACTIONS(1007), + [anon_sym_i64] = ACTIONS(1007), + [anon_sym_u128] = ACTIONS(1007), + [anon_sym_i128] = ACTIONS(1007), + [anon_sym_isize] = ACTIONS(1007), + [anon_sym_usize] = ACTIONS(1007), + [anon_sym_f32] = ACTIONS(1007), + [anon_sym_f64] = ACTIONS(1007), + [anon_sym_bool] = ACTIONS(1007), + [anon_sym_str] = ACTIONS(1007), + [anon_sym_char] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_PLUS_EQ] = ACTIONS(1009), + [anon_sym_DASH_EQ] = ACTIONS(1009), + [anon_sym_STAR_EQ] = ACTIONS(1009), + [anon_sym_SLASH_EQ] = ACTIONS(1009), + [anon_sym_PERCENT_EQ] = ACTIONS(1009), + [anon_sym_CARET_EQ] = ACTIONS(1009), + [anon_sym_AMP_EQ] = ACTIONS(1009), + [anon_sym_PIPE_EQ] = ACTIONS(1009), + [anon_sym_LT_LT_EQ] = ACTIONS(1009), + [anon_sym_GT_GT_EQ] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_BANG_EQ] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT_EQ] = ACTIONS(1009), + [anon_sym_LT_EQ] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1009), + [anon_sym__] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), + [anon_sym_COMMA] = ACTIONS(1009), + [anon_sym_COLON_COLON] = ACTIONS(1009), + [anon_sym_DASH_GT] = ACTIONS(1009), + [anon_sym_POUND] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_as] = ACTIONS(1007), + [anon_sym_async] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1007), + [anon_sym_break] = ACTIONS(1007), + [anon_sym_const] = ACTIONS(1007), + [anon_sym_continue] = ACTIONS(1007), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_fn] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_gen] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1007), + [anon_sym_loop] = ACTIONS(1007), + [anon_sym_match] = ACTIONS(1007), + [anon_sym_mod] = ACTIONS(1007), + [anon_sym_pub] = ACTIONS(1007), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1007), + [anon_sym_struct] = ACTIONS(1007), + [anon_sym_trait] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1007), + [anon_sym_union] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1007), + [anon_sym_use] = ACTIONS(1007), + [anon_sym_where] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1007), + [sym_mutable_specifier] = ACTIONS(1007), + [sym_integer_literal] = ACTIONS(1009), + [aux_sym_string_literal_token1] = ACTIONS(1009), + [sym_char_literal] = ACTIONS(1009), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1007), + [sym_super] = ACTIONS(1007), + [sym_crate] = ACTIONS(1007), + [sym_metavariable] = ACTIONS(1009), + [sym__raw_string_literal_start] = ACTIONS(1009), + [sym_float_literal] = ACTIONS(1009), + }, + [STATE(177)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(999), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37086,7 +37515,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -37120,455 +37549,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(175)] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [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(176)] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_EQ_GT] = ACTIONS(1007), - [anon_sym_COLON] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(1007), - [anon_sym_u8] = ACTIONS(1005), - [anon_sym_i8] = ACTIONS(1005), - [anon_sym_u16] = ACTIONS(1005), - [anon_sym_i16] = ACTIONS(1005), - [anon_sym_u32] = ACTIONS(1005), - [anon_sym_i32] = ACTIONS(1005), - [anon_sym_u64] = ACTIONS(1005), - [anon_sym_i64] = ACTIONS(1005), - [anon_sym_u128] = ACTIONS(1005), - [anon_sym_i128] = ACTIONS(1005), - [anon_sym_isize] = ACTIONS(1005), - [anon_sym_usize] = ACTIONS(1005), - [anon_sym_f32] = ACTIONS(1005), - [anon_sym_f64] = ACTIONS(1005), - [anon_sym_bool] = ACTIONS(1005), - [anon_sym_str] = ACTIONS(1005), - [anon_sym_char] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1005), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PERCENT_EQ] = ACTIONS(1007), - [anon_sym_CARET_EQ] = ACTIONS(1007), - [anon_sym_AMP_EQ] = ACTIONS(1007), - [anon_sym_PIPE_EQ] = ACTIONS(1007), - [anon_sym_LT_LT_EQ] = ACTIONS(1007), - [anon_sym_GT_GT_EQ] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1007), - [anon_sym_BANG_EQ] = ACTIONS(1007), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1007), - [anon_sym_LT_EQ] = ACTIONS(1007), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym__] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_COLON_COLON] = ACTIONS(1007), - [anon_sym_DASH_GT] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_await] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_fn] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_gen] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_impl] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_pub] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_struct] = ACTIONS(1005), - [anon_sym_trait] = ACTIONS(1005), - [anon_sym_type] = ACTIONS(1005), - [anon_sym_union] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [sym_mutable_specifier] = ACTIONS(1005), - [sym_integer_literal] = ACTIONS(1007), - [aux_sym_string_literal_token1] = ACTIONS(1007), - [sym_char_literal] = ACTIONS(1007), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1005), - [sym_super] = ACTIONS(1005), - [sym_crate] = ACTIONS(1005), - [sym_metavariable] = ACTIONS(1007), - [sym__raw_string_literal_start] = ACTIONS(1007), - [sym_float_literal] = ACTIONS(1007), - }, - [STATE(177)] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_RBRACK] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(887), - [anon_sym_COLON] = ACTIONS(885), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(885), - [anon_sym_STAR] = ACTIONS(885), - [anon_sym_QMARK] = ACTIONS(887), - [anon_sym_u8] = ACTIONS(885), - [anon_sym_i8] = ACTIONS(885), - [anon_sym_u16] = ACTIONS(885), - [anon_sym_i16] = ACTIONS(885), - [anon_sym_u32] = ACTIONS(885), - [anon_sym_i32] = ACTIONS(885), - [anon_sym_u64] = ACTIONS(885), - [anon_sym_i64] = ACTIONS(885), - [anon_sym_u128] = ACTIONS(885), - [anon_sym_i128] = ACTIONS(885), - [anon_sym_isize] = ACTIONS(885), - [anon_sym_usize] = ACTIONS(885), - [anon_sym_f32] = ACTIONS(885), - [anon_sym_f64] = ACTIONS(885), - [anon_sym_bool] = ACTIONS(885), - [anon_sym_str] = ACTIONS(885), - [anon_sym_char] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(885), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_AMP_AMP] = ACTIONS(887), - [anon_sym_PIPE_PIPE] = ACTIONS(887), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(885), - [anon_sym_PLUS_EQ] = ACTIONS(887), - [anon_sym_DASH_EQ] = ACTIONS(887), - [anon_sym_STAR_EQ] = ACTIONS(887), - [anon_sym_SLASH_EQ] = ACTIONS(887), - [anon_sym_PERCENT_EQ] = ACTIONS(887), - [anon_sym_CARET_EQ] = ACTIONS(887), - [anon_sym_AMP_EQ] = ACTIONS(887), - [anon_sym_PIPE_EQ] = ACTIONS(887), - [anon_sym_LT_LT_EQ] = ACTIONS(887), - [anon_sym_GT_GT_EQ] = ACTIONS(887), - [anon_sym_EQ] = ACTIONS(885), - [anon_sym_EQ_EQ] = ACTIONS(887), - [anon_sym_BANG_EQ] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_AT] = ACTIONS(887), - [anon_sym__] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(885), - [anon_sym_DOT_DOT] = ACTIONS(885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(887), - [anon_sym_COMMA] = ACTIONS(887), - [anon_sym_COLON_COLON] = ACTIONS(887), - [anon_sym_DASH_GT] = ACTIONS(887), - [anon_sym_POUND] = ACTIONS(887), - [anon_sym_SQUOTE] = ACTIONS(885), - [anon_sym_as] = ACTIONS(885), - [anon_sym_async] = ACTIONS(885), - [anon_sym_await] = ACTIONS(885), - [anon_sym_break] = ACTIONS(885), - [anon_sym_const] = ACTIONS(885), - [anon_sym_continue] = ACTIONS(885), - [anon_sym_default] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_fn] = ACTIONS(885), - [anon_sym_for] = ACTIONS(885), - [anon_sym_gen] = ACTIONS(885), - [anon_sym_if] = ACTIONS(885), - [anon_sym_impl] = ACTIONS(885), - [anon_sym_let] = ACTIONS(885), - [anon_sym_loop] = ACTIONS(885), - [anon_sym_match] = ACTIONS(885), - [anon_sym_mod] = ACTIONS(885), - [anon_sym_pub] = ACTIONS(885), - [anon_sym_return] = ACTIONS(885), - [anon_sym_static] = ACTIONS(885), - [anon_sym_struct] = ACTIONS(885), - [anon_sym_trait] = ACTIONS(885), - [anon_sym_type] = ACTIONS(885), - [anon_sym_union] = ACTIONS(885), - [anon_sym_unsafe] = ACTIONS(885), - [anon_sym_use] = ACTIONS(885), - [anon_sym_where] = ACTIONS(885), - [anon_sym_while] = ACTIONS(885), - [sym_mutable_specifier] = ACTIONS(885), - [sym_integer_literal] = ACTIONS(887), - [aux_sym_string_literal_token1] = ACTIONS(887), - [sym_char_literal] = ACTIONS(887), - [anon_sym_true] = ACTIONS(885), - [anon_sym_false] = ACTIONS(885), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(885), - [sym_crate] = ACTIONS(885), - [sym_metavariable] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(887), - [sym_float_literal] = ACTIONS(887), - }, [STATE(178)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2699), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [aux_sym_enum_variant_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1009), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -37577,114 +37658,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(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(179)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2819), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -37693,10 +37774,10 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, @@ -37817,293 +37898,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1015), }, [STATE(181)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [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), - }, - [STATE(182)] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [aux_sym__non_special_token_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(1021), - [anon_sym_i8] = ACTIONS(1021), - [anon_sym_u16] = ACTIONS(1021), - [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(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_fn] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_gen] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_impl] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_struct] = ACTIONS(1021), - [anon_sym_trait] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_union] = ACTIONS(1021), - [anon_sym_unsafe] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_where] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [sym_mutable_specifier] = ACTIONS(1021), - [sym_integer_literal] = ACTIONS(1023), - [aux_sym_string_literal_token1] = ACTIONS(1023), - [sym_char_literal] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), - [sym_crate] = ACTIONS(1021), - [sym__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), - }, - [STATE(183)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1729), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1017), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38130,7 +37979,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -38164,62 +38013,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(184)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [STATE(182)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1027), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38246,7 +38095,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -38280,177 +38129,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(185)] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1031), - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_u8] = ACTIONS(1029), - [anon_sym_i8] = ACTIONS(1029), - [anon_sym_u16] = ACTIONS(1029), - [anon_sym_i16] = ACTIONS(1029), - [anon_sym_u32] = ACTIONS(1029), - [anon_sym_i32] = ACTIONS(1029), - [anon_sym_u64] = ACTIONS(1029), - [anon_sym_i64] = ACTIONS(1029), - [anon_sym_u128] = ACTIONS(1029), - [anon_sym_i128] = ACTIONS(1029), - [anon_sym_isize] = ACTIONS(1029), - [anon_sym_usize] = ACTIONS(1029), - [anon_sym_f32] = ACTIONS(1029), - [anon_sym_f64] = ACTIONS(1029), - [anon_sym_bool] = ACTIONS(1029), - [anon_sym_str] = ACTIONS(1029), - [anon_sym_char] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_PERCENT] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1029), - [anon_sym_GT_GT] = ACTIONS(1029), - [anon_sym_PLUS_EQ] = ACTIONS(1031), - [anon_sym_DASH_EQ] = ACTIONS(1031), - [anon_sym_STAR_EQ] = ACTIONS(1031), - [anon_sym_SLASH_EQ] = ACTIONS(1031), - [anon_sym_PERCENT_EQ] = ACTIONS(1031), - [anon_sym_CARET_EQ] = ACTIONS(1031), - [anon_sym_AMP_EQ] = ACTIONS(1031), - [anon_sym_PIPE_EQ] = ACTIONS(1031), - [anon_sym_LT_LT_EQ] = ACTIONS(1031), - [anon_sym_GT_GT_EQ] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(1031), - [anon_sym_BANG_EQ] = ACTIONS(1031), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT_EQ] = ACTIONS(1031), - [anon_sym_LT_EQ] = ACTIONS(1031), - [anon_sym_AT] = ACTIONS(1031), - [anon_sym__] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_COLON_COLON] = ACTIONS(1031), - [anon_sym_DASH_GT] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(1031), - [anon_sym_SQUOTE] = ACTIONS(1029), - [anon_sym_as] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_await] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_default] = ACTIONS(1029), - [anon_sym_enum] = ACTIONS(1029), - [anon_sym_fn] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_gen] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_impl] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_mod] = ACTIONS(1029), - [anon_sym_pub] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_static] = ACTIONS(1029), - [anon_sym_struct] = ACTIONS(1029), - [anon_sym_trait] = ACTIONS(1029), - [anon_sym_type] = ACTIONS(1029), - [anon_sym_union] = ACTIONS(1029), - [anon_sym_unsafe] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [sym_mutable_specifier] = ACTIONS(1029), - [sym_integer_literal] = ACTIONS(1031), - [aux_sym_string_literal_token1] = ACTIONS(1031), - [sym_char_literal] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1029), - [sym_super] = ACTIONS(1029), - [sym_crate] = ACTIONS(1029), - [sym_metavariable] = ACTIONS(1031), - [sym__raw_string_literal_start] = ACTIONS(1031), - [sym_float_literal] = ACTIONS(1031), + [STATE(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), }, - [STATE(186)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [STATE(184)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -38478,7 +38327,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -38512,107 +38361,455 @@ 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(185)] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_EQ_GT] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u128] = ACTIONS(1027), + [anon_sym_i128] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_str] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1027), + [anon_sym_PERCENT] = ACTIONS(1027), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1029), + [anon_sym_PIPE_PIPE] = ACTIONS(1029), + [anon_sym_LT_LT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PERCENT_EQ] = ACTIONS(1029), + [anon_sym_CARET_EQ] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), + [anon_sym__] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_COLON_COLON] = ACTIONS(1029), + [anon_sym_DASH_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1027), + [anon_sym_await] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_fn] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_gen] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_impl] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_mod] = ACTIONS(1027), + [anon_sym_pub] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_trait] = ACTIONS(1027), + [anon_sym_type] = ACTIONS(1027), + [anon_sym_union] = ACTIONS(1027), + [anon_sym_unsafe] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_where] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [sym_mutable_specifier] = ACTIONS(1027), + [sym_integer_literal] = ACTIONS(1029), + [aux_sym_string_literal_token1] = ACTIONS(1029), + [sym_char_literal] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1027), + [anon_sym_false] = ACTIONS(1027), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1027), + [sym_super] = ACTIONS(1027), + [sym_crate] = ACTIONS(1027), + [sym_metavariable] = ACTIONS(1029), + [sym__raw_string_literal_start] = ACTIONS(1029), + [sym_float_literal] = ACTIONS(1029), + }, + [STATE(186)] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_identifier] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_RBRACK] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_EQ_GT] = ACTIONS(1033), + [anon_sym_COLON] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_u8] = ACTIONS(1031), + [anon_sym_i8] = ACTIONS(1031), + [anon_sym_u16] = ACTIONS(1031), + [anon_sym_i16] = ACTIONS(1031), + [anon_sym_u32] = ACTIONS(1031), + [anon_sym_i32] = ACTIONS(1031), + [anon_sym_u64] = ACTIONS(1031), + [anon_sym_i64] = ACTIONS(1031), + [anon_sym_u128] = ACTIONS(1031), + [anon_sym_i128] = ACTIONS(1031), + [anon_sym_isize] = ACTIONS(1031), + [anon_sym_usize] = ACTIONS(1031), + [anon_sym_f32] = ACTIONS(1031), + [anon_sym_f64] = ACTIONS(1031), + [anon_sym_bool] = ACTIONS(1031), + [anon_sym_str] = ACTIONS(1031), + [anon_sym_char] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1031), + [anon_sym_PERCENT] = ACTIONS(1031), + [anon_sym_CARET] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1031), + [anon_sym_AMP_AMP] = ACTIONS(1033), + [anon_sym_PIPE_PIPE] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PERCENT_EQ] = ACTIONS(1033), + [anon_sym_CARET_EQ] = ACTIONS(1033), + [anon_sym_AMP_EQ] = ACTIONS(1033), + [anon_sym_PIPE_EQ] = ACTIONS(1033), + [anon_sym_LT_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_GT_EQ] = ACTIONS(1033), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(1033), + [anon_sym__] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(1033), + [anon_sym_DASH_GT] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_await] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1031), + [anon_sym_fn] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_gen] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_impl] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_mod] = ACTIONS(1031), + [anon_sym_pub] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_trait] = ACTIONS(1031), + [anon_sym_type] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1031), + [anon_sym_unsafe] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_where] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [sym_mutable_specifier] = ACTIONS(1031), + [sym_integer_literal] = ACTIONS(1033), + [aux_sym_string_literal_token1] = ACTIONS(1033), + [sym_char_literal] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1031), + [anon_sym_false] = ACTIONS(1031), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1031), + [sym_super] = ACTIONS(1031), + [sym_crate] = ACTIONS(1031), + [sym_metavariable] = ACTIONS(1033), + [sym__raw_string_literal_start] = ACTIONS(1033), + [sym_float_literal] = ACTIONS(1033), + }, [STATE(187)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2651), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_AMP_EQ] = ACTIONS(903), + [anon_sym_PIPE_EQ] = ACTIONS(903), + [anon_sym_LT_LT_EQ] = ACTIONS(903), + [anon_sym_GT_GT_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(903), + [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_gen] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_union] = ACTIONS(901), + [anon_sym_unsafe] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [sym_mutable_specifier] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_crate] = ACTIONS(901), + [sym_metavariable] = ACTIONS(903), + [sym__raw_string_literal_start] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), + }, + [STATE(188)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2855), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38621,114 +38818,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(188)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2657), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(465), + [STATE(189)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2869), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38737,230 +38934,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(189)] = { - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_EQ_GT] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u128] = ACTIONS(863), - [anon_sym_i128] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_str] = ACTIONS(863), - [anon_sym_char] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_PERCENT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_LT_LT] = ACTIONS(863), - [anon_sym_GT_GT] = ACTIONS(863), - [anon_sym_PLUS_EQ] = ACTIONS(865), - [anon_sym_DASH_EQ] = ACTIONS(865), - [anon_sym_STAR_EQ] = ACTIONS(865), - [anon_sym_SLASH_EQ] = ACTIONS(865), - [anon_sym_PERCENT_EQ] = ACTIONS(865), - [anon_sym_CARET_EQ] = ACTIONS(865), - [anon_sym_AMP_EQ] = ACTIONS(865), - [anon_sym_PIPE_EQ] = ACTIONS(865), - [anon_sym_LT_LT_EQ] = ACTIONS(865), - [anon_sym_GT_GT_EQ] = ACTIONS(865), - [anon_sym_EQ] = ACTIONS(863), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(865), - [anon_sym__] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [anon_sym_COMMA] = ACTIONS(865), - [anon_sym_COLON_COLON] = ACTIONS(865), - [anon_sym_DASH_GT] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(865), - [anon_sym_SQUOTE] = ACTIONS(863), - [anon_sym_as] = ACTIONS(863), - [anon_sym_async] = ACTIONS(863), - [anon_sym_await] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_const] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_default] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_fn] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_gen] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_impl] = ACTIONS(863), - [anon_sym_let] = ACTIONS(863), - [anon_sym_loop] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(863), - [anon_sym_pub] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_trait] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_union] = ACTIONS(863), - [anon_sym_unsafe] = ACTIONS(863), - [anon_sym_use] = ACTIONS(863), - [anon_sym_where] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [sym_mutable_specifier] = ACTIONS(863), - [sym_integer_literal] = ACTIONS(865), - [aux_sym_string_literal_token1] = ACTIONS(865), - [sym_char_literal] = ACTIONS(865), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(863), - [sym_super] = ACTIONS(863), - [sym_crate] = ACTIONS(863), - [sym_metavariable] = ACTIONS(865), - [sym__raw_string_literal_start] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), - }, [STATE(190)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2600), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2754), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38969,114 +39050,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2673), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2703), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39085,114 +39166,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2675), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2716), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39201,529 +39282,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2696), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [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(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(194)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2714), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(195)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2715), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(196)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(3111), - [sym__let_chain] = STATE(3123), - [sym__condition] = STATE(2726), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(197)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39754,7 +39371,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(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -39788,106 +39405,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(198)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(339), + [STATE(194)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2835), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39896,113 +39514,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(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(199)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(339), + [STATE(195)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2625), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -40011,16 +39630,132 @@ 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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(200)] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), + [STATE(196)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(3091), + [sym__let_chain] = STATE(3103), + [sym__condition] = STATE(2627), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [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(1037), [anon_sym_SEMI] = ACTIONS(1039), [anon_sym_LPAREN] = ACTIONS(1039), @@ -40031,7 +39766,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), @@ -40130,45 +39865,276 @@ 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(201)] = { - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), + [STATE(198)] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [STATE(199)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(200)] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(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), @@ -40248,6 +40214,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1043), [sym_float_literal] = ACTIONS(1043), }, + [STATE(201)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1970), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(202)] = { [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), @@ -40366,236 +40447,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(203)] = { [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_gen] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), + [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_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1942), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [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(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), [sym_identifier] = ACTIONS(1045), [anon_sym_SEMI] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1047), @@ -40708,469 +40674,354 @@ 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(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(951), + [anon_sym_i8] = ACTIONS(951), + [anon_sym_u16] = ACTIONS(951), + [anon_sym_i16] = ACTIONS(951), + [anon_sym_u32] = ACTIONS(951), + [anon_sym_i32] = ACTIONS(951), + [anon_sym_u64] = ACTIONS(951), + [anon_sym_i64] = ACTIONS(951), + [anon_sym_u128] = ACTIONS(951), + [anon_sym_i128] = ACTIONS(951), + [anon_sym_isize] = ACTIONS(951), + [anon_sym_usize] = ACTIONS(951), + [anon_sym_f32] = ACTIONS(951), + [anon_sym_f64] = ACTIONS(951), + [anon_sym_bool] = ACTIONS(951), + [anon_sym_str] = ACTIONS(951), + [anon_sym_char] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(953), + [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym__] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_COLON_COLON] = ACTIONS(953), + [anon_sym_DASH_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(953), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_async] = ACTIONS(951), + [anon_sym_await] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_default] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_gen] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_mod] = ACTIONS(951), + [anon_sym_pub] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_static] = ACTIONS(951), + [anon_sym_struct] = ACTIONS(951), + [anon_sym_trait] = ACTIONS(951), + [anon_sym_type] = ACTIONS(951), + [anon_sym_union] = ACTIONS(951), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_where] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [sym_mutable_specifier] = ACTIONS(951), + [sym_integer_literal] = ACTIONS(953), + [aux_sym_string_literal_token1] = ACTIONS(953), + [sym_char_literal] = ACTIONS(953), + [anon_sym_true] = ACTIONS(951), + [anon_sym_false] = ACTIONS(951), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_crate] = ACTIONS(951), + [sym__raw_string_literal_start] = ACTIONS(953), + [sym_float_literal] = ACTIONS(953), + }, [STATE(206)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [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), + [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(957), + [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__raw_string_literal_start] = ACTIONS(957), + [sym_float_literal] = ACTIONS(957), }, [STATE(207)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [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), + [sym_identifier] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_RBRACK] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_EQ_GT] = ACTIONS(1015), + [anon_sym_COLON] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1013), + [anon_sym_i8] = ACTIONS(1013), + [anon_sym_u16] = ACTIONS(1013), + [anon_sym_i16] = ACTIONS(1013), + [anon_sym_u32] = ACTIONS(1013), + [anon_sym_i32] = ACTIONS(1013), + [anon_sym_u64] = ACTIONS(1013), + [anon_sym_i64] = ACTIONS(1013), + [anon_sym_u128] = ACTIONS(1013), + [anon_sym_i128] = ACTIONS(1013), + [anon_sym_isize] = ACTIONS(1013), + [anon_sym_usize] = ACTIONS(1013), + [anon_sym_f32] = ACTIONS(1013), + [anon_sym_f64] = ACTIONS(1013), + [anon_sym_bool] = ACTIONS(1013), + [anon_sym_str] = ACTIONS(1013), + [anon_sym_char] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_PERCENT] = ACTIONS(1013), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1015), + [anon_sym_PIPE_PIPE] = ACTIONS(1015), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_PLUS_EQ] = ACTIONS(1015), + [anon_sym_DASH_EQ] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1015), + [anon_sym_SLASH_EQ] = ACTIONS(1015), + [anon_sym_PERCENT_EQ] = ACTIONS(1015), + [anon_sym_CARET_EQ] = ACTIONS(1015), + [anon_sym_AMP_EQ] = ACTIONS(1015), + [anon_sym_PIPE_EQ] = ACTIONS(1015), + [anon_sym_LT_LT_EQ] = ACTIONS(1015), + [anon_sym_GT_GT_EQ] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_EQ_EQ] = ACTIONS(1015), + [anon_sym_BANG_EQ] = ACTIONS(1015), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT_EQ] = ACTIONS(1015), + [anon_sym_LT_EQ] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [anon_sym__] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), + [anon_sym_COMMA] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1015), + [anon_sym_DASH_GT] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1013), + [anon_sym_as] = ACTIONS(1013), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_await] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_gen] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_impl] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_loop] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_mod] = ACTIONS(1013), + [anon_sym_pub] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_trait] = ACTIONS(1013), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_unsafe] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_where] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [sym_mutable_specifier] = ACTIONS(1013), + [sym_integer_literal] = ACTIONS(1015), + [aux_sym_string_literal_token1] = ACTIONS(1015), + [sym_char_literal] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(1013), + [sym_super] = ACTIONS(1013), + [sym_crate] = ACTIONS(1013), + [sym__raw_string_literal_start] = ACTIONS(1015), + [sym_float_literal] = ACTIONS(1015), }, [STATE(208)] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(965), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_EQ_GT] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_PERCENT_EQ] = ACTIONS(965), - [anon_sym_CARET_EQ] = ACTIONS(965), - [anon_sym_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_EQ] = ACTIONS(965), - [anon_sym_LT_LT_EQ] = ACTIONS(965), - [anon_sym_GT_GT_EQ] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym__] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(965), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_COLON_COLON] = ACTIONS(965), - [anon_sym_DASH_GT] = ACTIONS(965), - [anon_sym_POUND] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_as] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_await] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_default] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [anon_sym_fn] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_gen] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_impl] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_loop] = ACTIONS(963), - [anon_sym_match] = ACTIONS(963), - [anon_sym_mod] = ACTIONS(963), - [anon_sym_pub] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_static] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_trait] = ACTIONS(963), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(963), - [anon_sym_unsafe] = ACTIONS(963), - [anon_sym_use] = ACTIONS(963), - [anon_sym_where] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [sym_mutable_specifier] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(965), - [aux_sym_string_literal_token1] = ACTIONS(965), - [sym_char_literal] = ACTIONS(965), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_crate] = ACTIONS(963), - [sym__raw_string_literal_start] = ACTIONS(965), - [sym_float_literal] = ACTIONS(965), - }, - [STATE(209)] = { - [sym_attribute_item] = STATE(1052), - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [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(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), @@ -41283,516 +41134,288 @@ 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(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_gen] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, - [STATE(212)] = { - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(995), - [anon_sym_DASH_GT] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_as] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_await] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_gen] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_loop] = ACTIONS(993), - [anon_sym_match] = ACTIONS(993), - [anon_sym_mod] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_trait] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_union] = ACTIONS(993), - [anon_sym_unsafe] = ACTIONS(993), - [anon_sym_use] = ACTIONS(993), - [anon_sym_where] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [sym_mutable_specifier] = ACTIONS(993), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(995), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(993), - [anon_sym_false] = ACTIONS(993), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_crate] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), - }, - [STATE(213)] = { - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [sym_identifier] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_EQ_GT] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u128] = ACTIONS(923), - [anon_sym_i128] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_str] = ACTIONS(923), - [anon_sym_char] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_COLON_COLON] = ACTIONS(925), - [anon_sym_DASH_GT] = ACTIONS(925), - [anon_sym_POUND] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_async] = ACTIONS(923), - [anon_sym_await] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_fn] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_gen] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_impl] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_trait] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [sym_mutable_specifier] = ACTIONS(923), - [sym_integer_literal] = ACTIONS(925), - [aux_sym_string_literal_token1] = ACTIONS(925), - [sym_char_literal] = ACTIONS(925), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), + [STATE(209)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), + [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(923), - [sym_super] = ACTIONS(923), - [sym_crate] = ACTIONS(923), - [sym__raw_string_literal_start] = ACTIONS(925), - [sym_float_literal] = ACTIONS(925), + [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(214)] = { - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(977), - [anon_sym_i8] = ACTIONS(977), - [anon_sym_u16] = ACTIONS(977), - [anon_sym_i16] = ACTIONS(977), - [anon_sym_u32] = ACTIONS(977), - [anon_sym_i32] = ACTIONS(977), - [anon_sym_u64] = ACTIONS(977), - [anon_sym_i64] = ACTIONS(977), - [anon_sym_u128] = ACTIONS(977), - [anon_sym_i128] = ACTIONS(977), - [anon_sym_isize] = ACTIONS(977), - [anon_sym_usize] = ACTIONS(977), - [anon_sym_f32] = ACTIONS(977), - [anon_sym_f64] = ACTIONS(977), - [anon_sym_bool] = ACTIONS(977), - [anon_sym_str] = ACTIONS(977), - [anon_sym_char] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), - [anon_sym_STAR_EQ] = ACTIONS(979), - [anon_sym_SLASH_EQ] = ACTIONS(979), - [anon_sym_PERCENT_EQ] = ACTIONS(979), - [anon_sym_CARET_EQ] = ACTIONS(979), - [anon_sym_AMP_EQ] = ACTIONS(979), - [anon_sym_PIPE_EQ] = ACTIONS(979), - [anon_sym_LT_LT_EQ] = ACTIONS(979), - [anon_sym_GT_GT_EQ] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(979), - [anon_sym__] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(977), - [anon_sym_as] = ACTIONS(977), - [anon_sym_async] = ACTIONS(977), - [anon_sym_await] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_const] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_default] = ACTIONS(977), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_fn] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_gen] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_impl] = ACTIONS(977), - [anon_sym_let] = ACTIONS(977), - [anon_sym_loop] = ACTIONS(977), - [anon_sym_match] = ACTIONS(977), - [anon_sym_mod] = ACTIONS(977), - [anon_sym_pub] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_static] = ACTIONS(977), - [anon_sym_struct] = ACTIONS(977), - [anon_sym_trait] = ACTIONS(977), - [anon_sym_type] = ACTIONS(977), - [anon_sym_union] = ACTIONS(977), - [anon_sym_unsafe] = ACTIONS(977), - [anon_sym_use] = ACTIONS(977), - [anon_sym_where] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [sym_mutable_specifier] = ACTIONS(977), - [sym_integer_literal] = ACTIONS(979), - [aux_sym_string_literal_token1] = ACTIONS(979), - [sym_char_literal] = ACTIONS(979), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(977), - [sym__raw_string_literal_start] = ACTIONS(979), - [sym_float_literal] = ACTIONS(979), + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [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(215)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1517), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), + [STATE(211)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41815,15 +41438,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(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(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41857,740 +41479,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(216)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_let_condition] = STATE(2669), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(217)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1933), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_let_condition] = STATE(2669), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1493), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(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(219)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1517), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), + [STATE(212)] = { + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [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_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1543), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1073), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [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(221)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1493), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(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), + [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(222)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1543), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), + [STATE(213)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1962), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42613,15 +41668,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1073), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42655,56 +41709,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(223)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1493), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), + [STATE(214)] = { + [sym_attribute_item] = STATE(1059), + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42727,15 +41783,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(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(1059), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1063), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42769,105 +41824,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(224)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1534), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(339), + [STATE(215)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(475), [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(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(489), [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(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1077), - [anon_sym_raw] = ACTIONS(1079), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_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), @@ -42876,68 +41931,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1851), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), + [STATE(216)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -42955,15 +42010,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_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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__] = ACTIONS(1081), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1083), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -42980,6 +42033,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1069), + [anon_sym_raw] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -42997,175 +42052,403 @@ 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(226)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1705), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [STATE(217)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(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(227)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1762), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), + [STATE(218)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(219)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(220)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1787), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43184,14 +42467,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(967), - [anon_sym_AMP] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1091), + [anon_sym_DASH_GT] = ACTIONS(1085), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43225,60 +42508,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(228)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [aux_sym_tuple_expression_repeat1] = STATE(248), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [aux_sym_tuple_expression_repeat1] = STATE(239), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1087), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43339,174 +42622,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(229)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [aux_sym_tuple_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_u8] = ACTIONS(1112), - [anon_sym_i8] = ACTIONS(1112), - [anon_sym_u16] = ACTIONS(1112), - [anon_sym_i16] = ACTIONS(1112), - [anon_sym_u32] = ACTIONS(1112), - [anon_sym_i32] = ACTIONS(1112), - [anon_sym_u64] = ACTIONS(1112), - [anon_sym_i64] = ACTIONS(1112), - [anon_sym_u128] = ACTIONS(1112), - [anon_sym_i128] = ACTIONS(1112), - [anon_sym_isize] = ACTIONS(1112), - [anon_sym_usize] = ACTIONS(1112), - [anon_sym_f32] = ACTIONS(1112), - [anon_sym_f64] = ACTIONS(1112), - [anon_sym_bool] = ACTIONS(1112), - [anon_sym_str] = ACTIONS(1112), - [anon_sym_char] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1124), - [anon_sym_COLON_COLON] = ACTIONS(1127), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_async] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1157), - [anon_sym_match] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1145), - [anon_sym_unsafe] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_yield] = ACTIONS(1175), - [anon_sym_move] = ACTIONS(1178), - [anon_sym_try] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1184), - [aux_sym_string_literal_token1] = ACTIONS(1187), - [sym_char_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1193), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1199), - [sym__raw_string_literal_start] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1184), - }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [aux_sym_tuple_expression_repeat1] = STATE(246), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1087), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43567,105 +42736,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(231)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1534), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(465), + [STATE(223)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1207), - [anon_sym_raw] = ACTIONS(1209), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [sym_mutable_specifier] = ACTIONS(1089), + [anon_sym_raw] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43674,181 +42843,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(232)] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3043), - [sym_variadic_parameter] = STATE(3043), - [sym_parameter] = STATE(3043), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2806), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2515), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(235), + [STATE(224)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1287), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43869,13 +42922,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1093), [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), @@ -43909,174 +42964,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(234)] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3128), - [sym_variadic_parameter] = STATE(3128), - [sym_parameter] = STATE(3128), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2837), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1301), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(235)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [STATE(225)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1315), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44102,7 +43041,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -44120,6 +43059,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(1095), + [anon_sym_raw] = ACTIONS(1097), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -44137,60 +43078,286 @@ 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(236)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [aux_sym_tuple_expression_repeat1] = STATE(237), + [STATE(226)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(227)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1099), + [anon_sym_raw] = ACTIONS(1101), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(228)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1315), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44211,13 +43378,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(1073), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44251,60 +43420,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [STATE(229)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2596), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1171), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(230)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [aux_sym_tuple_expression_repeat1] = STATE(239), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1317), + [anon_sym_RPAREN] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44365,854 +43648,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(238)] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3043), - [sym_variadic_parameter] = STATE(3043), - [sym_parameter] = STATE(3043), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2806), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2515), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(239)] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3043), - [sym_variadic_parameter] = STATE(3043), - [sym_parameter] = STATE(3043), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2806), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1534), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1329), - [anon_sym_raw] = ACTIONS(1331), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [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(241)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3072), - [sym_variadic_parameter] = STATE(3072), - [sym_parameter] = STATE(3072), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1335), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(242)] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3043), - [sym_variadic_parameter] = STATE(3043), - [sym_parameter] = STATE(3043), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2806), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2515), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1341), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(243)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(2669), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(244)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_let_condition] = STATE(2669), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(231)] = { + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3032), + [sym_variadic_parameter] = STATE(3032), + [sym_parameter] = STATE(3032), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, - [STATE(245)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1556), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1493), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), + [STATE(232)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45240,10 +43839,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(1059), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1063), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45277,56 +43876,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(246)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1543), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), + [STATE(233)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45354,10 +43953,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1073), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45391,61 +43990,518 @@ 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(247)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), + [STATE(234)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(235)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2596), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1171), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(236)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(237)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(238)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1964), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -45463,12 +44519,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(993), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -45479,6 +44535,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_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -45486,8 +44543,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(1343), - [anon_sym_raw] = ACTIONS(1345), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -45505,60 +44560,174 @@ 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(248)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [STATE(239)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1968), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [aux_sym_tuple_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1238), + [anon_sym_i8] = ACTIONS(1238), + [anon_sym_u16] = ACTIONS(1238), + [anon_sym_i16] = ACTIONS(1238), + [anon_sym_u32] = ACTIONS(1238), + [anon_sym_i32] = ACTIONS(1238), + [anon_sym_u64] = ACTIONS(1238), + [anon_sym_i64] = ACTIONS(1238), + [anon_sym_u128] = ACTIONS(1238), + [anon_sym_i128] = ACTIONS(1238), + [anon_sym_isize] = ACTIONS(1238), + [anon_sym_usize] = ACTIONS(1238), + [anon_sym_f32] = ACTIONS(1238), + [anon_sym_f64] = ACTIONS(1238), + [anon_sym_bool] = ACTIONS(1238), + [anon_sym_str] = ACTIONS(1238), + [anon_sym_char] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_gen] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_unsafe] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_yield] = ACTIONS(1301), + [anon_sym_move] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(1307), + [sym_integer_literal] = ACTIONS(1310), + [aux_sym_string_literal_token1] = ACTIONS(1313), + [sym_char_literal] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1310), + }, + [STATE(240)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [aux_sym_tuple_expression_repeat1] = STATE(241), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45619,60 +44788,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(249)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [aux_sym_tuple_expression_repeat1] = STATE(230), + [STATE(241)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_tuple_expression_repeat1] = STATE(239), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1331), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45733,105 +44902,333 @@ 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(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1517), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(465), + [STATE(242)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2884), + [sym_variadic_parameter] = STATE(2884), + [sym_parameter] = STATE(2884), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2717), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(243)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1721), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [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(1339), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1341), + [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(244)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1213), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45840,65 +45237,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(251)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1517), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), + [STATE(245)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1760), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [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(1343), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1345), + [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(246)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [aux_sym_tuple_expression_repeat1] = STATE(239), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45919,15 +45432,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(1053), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45961,1635 +45472,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(252)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1543), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1073), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(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(253)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(254)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(255)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(256)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(257)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(258)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(259)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(260)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(261)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(262)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(263)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1752), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(264)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(265)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(266)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1561), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), + [STATE(247)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47612,13 +45544,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(1075), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1213), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -47652,168 +45586,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(267)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(268)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), + [STATE(248)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1539), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47836,13 +45658,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(1075), + [anon_sym__] = ACTIONS(1077), + [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), @@ -47876,168 +45700,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(269)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1444), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(270)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [STATE(249)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1509), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48060,13 +45772,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(1075), + [anon_sym__] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1213), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -48100,58 +45814,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(271)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [STATE(250)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_tuple_expression_repeat1] = STATE(230), [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), @@ -48177,7 +45893,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48212,58 +45928,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(272)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), + [STATE(251)] = { + [sym_attribute_item] = STATE(400), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2994), + [sym_variadic_parameter] = STATE(2994), + [sym_parameter] = STATE(2994), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2596), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1171), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(252)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [aux_sym_tuple_expression_repeat1] = STATE(221), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1355), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -48289,7 +46121,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48324,103 +46156,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(273)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(465), + [STATE(253)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(913), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48429,110 +46263,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(339), + [STATE(254)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(1073), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48541,110 +46377,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(339), + [STATE(255)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48653,68 +46491,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), + [STATE(256)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1921), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -48732,13 +46570,15 @@ 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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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_DOT_DOT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1357), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1359), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -48772,56 +46612,1187 @@ 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(277)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), + [STATE(257)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_let_condition] = STATE(2860), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [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(1067), + [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(258)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(259)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(260)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(261)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(262)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(263)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(264)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(265)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(266)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(267)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48884,103 +47855,551 @@ 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(278)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1444), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(465), + [STATE(268)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(269)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(270)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1449), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(271)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(272)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1971), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [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(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(1061), - [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), @@ -48989,63 +48408,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), + [STATE(273)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49073,7 +48492,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49108,61 +48527,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(280)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), + [STATE(274)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49180,12 +48599,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49220,61 +48639,173 @@ 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(281)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), + [STATE(275)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [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(276)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49292,12 +48823,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49332,61 +48863,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(282)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [STATE(277)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49404,12 +48935,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49444,61 +48975,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(283)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [STATE(278)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49516,12 +49047,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49556,61 +49087,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(284)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), + [STATE(279)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49628,12 +49159,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49668,61 +49199,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(285)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), + [STATE(280)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49740,12 +49271,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49780,61 +49311,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(286)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), + [STATE(281)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49852,12 +49383,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49892,61 +49423,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(287)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [STATE(282)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49964,12 +49495,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -50004,61 +49535,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(288)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -50076,12 +49607,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -50116,61 +49647,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(289)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [STATE(284)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -50188,12 +49719,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -50228,61 +49759,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(290)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [STATE(285)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -50300,12 +49831,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -50340,60 +49871,284 @@ 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(291)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(339), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [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(1067), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(287)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(288)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(481), + [sym_match_expression] = STATE(481), + [sym_while_expression] = STATE(481), + [sym_loop_expression] = STATE(481), + [sym_for_expression] = STATE(481), + [sym_const_block] = STATE(481), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(481), + [sym_async_block] = STATE(481), + [sym_gen_block] = STATE(481), + [sym_try_block] = STATE(481), + [sym_block] = STATE(481), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50417,27 +50172,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(1075), + [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(1385), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1387), [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(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), [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(1399), + [anon_sym_while] = ACTIONS(1401), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1403), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50452,173 +50207,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(292)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -50636,12 +50279,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -50676,103 +50319,215 @@ 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(294)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(465), + [STATE(290)] = { + [sym_else_clause] = STATE(407), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_macro_rules_BANG] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_QMARK] = ACTIONS(1405), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1405), + [anon_sym_LT_LT] = ACTIONS(1407), + [anon_sym_GT_GT] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1405), + [anon_sym_DASH_EQ] = ACTIONS(1405), + [anon_sym_STAR_EQ] = ACTIONS(1405), + [anon_sym_SLASH_EQ] = ACTIONS(1405), + [anon_sym_PERCENT_EQ] = ACTIONS(1405), + [anon_sym_CARET_EQ] = ACTIONS(1405), + [anon_sym_AMP_EQ] = ACTIONS(1405), + [anon_sym_PIPE_EQ] = ACTIONS(1405), + [anon_sym_LT_LT_EQ] = ACTIONS(1405), + [anon_sym_GT_GT_EQ] = ACTIONS(1405), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1405), + [anon_sym_BANG_EQ] = ACTIONS(1405), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_gen] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_trait] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_unsafe] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1409), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_move] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym__raw_string_literal_start] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(1061), - [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), @@ -50781,63 +50536,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), + [STATE(292)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50865,7 +50620,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50900,56 +50655,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(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), + [STATE(293)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50977,7 +50732,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51012,56 +50767,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(297)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51089,7 +50844,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51124,103 +50879,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(298)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(465), + [STATE(295)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51229,110 +50984,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(465), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51341,63 +51096,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51460,215 +51215,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(465), + [STATE(298)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1920), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(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_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -51677,68 +51320,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [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_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -51756,12 +51399,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(971), + [anon_sym_DOT_DOT] = ACTIONS(993), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -51796,173 +51439,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(304)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), + [STATE(300)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -51980,12 +51511,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(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [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(971), + [anon_sym_DOT_DOT] = ACTIONS(1067), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -52020,56 +51551,56 @@ 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(306)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1467), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52097,7 +51628,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52132,215 +51663,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(307)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), + [STATE(302)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(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(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(308)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1533), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(465), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1467), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52349,63 +51880,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52468,168 +51999,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(310)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(2884), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2847), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1944), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52692,60 +52111,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(312)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1527), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), + [STATE(306)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(479), + [sym_match_expression] = STATE(479), + [sym_while_expression] = STATE(479), + [sym_loop_expression] = STATE(479), + [sym_for_expression] = STATE(479), + [sym_const_block] = STATE(479), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(479), + [sym_async_block] = STATE(479), + [sym_gen_block] = STATE(479), + [sym_try_block] = STATE(479), + [sym_block] = STATE(479), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52769,27 +52188,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(1075), + [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(1385), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1387), [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(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), [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(1399), + [anon_sym_while] = ACTIONS(1401), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1403), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52804,56 +52223,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(313)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1905), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52916,56 +52335,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(314)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1969), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53028,60 +52447,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(315)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1911), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(484), - [sym_match_expression] = STATE(484), - [sym_while_expression] = STATE(484), - [sym_loop_expression] = STATE(484), - [sym_for_expression] = STATE(484), - [sym_const_block] = STATE(484), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3733), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(484), - [sym_async_block] = STATE(484), - [sym_gen_block] = STATE(484), - [sym_try_block] = STATE(484), - [sym_block] = STATE(484), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), + [STATE(309)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1965), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [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(1387), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53108,24 +52527,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(1389), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1401), + [anon_sym_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(1403), - [anon_sym_while] = ACTIONS(1405), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53140,56 +52559,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(316)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1444), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), + [STATE(310)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53217,7 +52636,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53252,168 +52671,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(317)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(2884), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2847), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), + [STATE(311)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1455), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53441,7 +52748,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53476,56 +52783,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(319)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), + [STATE(312)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53553,7 +52860,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53588,56 +52895,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(320)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53665,7 +52972,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53700,168 +53007,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(321)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53889,7 +53084,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53924,103 +53119,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(323)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(465), + [STATE(315)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [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), @@ -54029,110 +53224,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(324)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1706), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(465), + [STATE(316)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_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(1369), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [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), @@ -54141,63 +53336,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1932), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), + [STATE(317)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54260,280 +53455,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), + [STATE(318)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1415), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), [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(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1527), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(319)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3097), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), + [STATE(320)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54596,172 +53791,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(329)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1533), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(481), + [sym_match_expression] = STATE(481), + [sym_while_expression] = STATE(481), + [sym_loop_expression] = STATE(481), + [sym_for_expression] = STATE(481), + [sym_const_block] = STATE(481), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(481), + [sym_async_block] = STATE(481), + [sym_gen_block] = STATE(481), + [sym_try_block] = STATE(481), + [sym_block] = STATE(481), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54788,24 +53871,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(1385), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1387), [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(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), [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(1399), + [anon_sym_while] = ACTIONS(1401), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1403), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54820,56 +53903,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(331)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1972), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54932,60 +54015,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(332)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(477), - [sym_match_expression] = STATE(477), - [sym_while_expression] = STATE(477), - [sym_loop_expression] = STATE(477), - [sym_for_expression] = STATE(477), - [sym_const_block] = STATE(477), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3733), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(477), - [sym_async_block] = STATE(477), - [sym_gen_block] = STATE(477), - [sym_try_block] = STATE(477), - [sym_block] = STATE(477), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55012,24 +54095,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(1389), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1401), + [anon_sym_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(1403), - [anon_sym_while] = ACTIONS(1405), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55044,168 +54127,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(333)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(2884), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2847), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [STATE(324)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1936), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(326)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1963), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55268,56 +54463,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(335)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1954), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), + [STATE(327)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55380,56 +54575,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(336)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1958), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55457,7 +54652,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -55492,56 +54687,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(337)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1533), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55569,7 +54764,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -55604,280 +54799,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(338)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [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(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [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), + [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), - }, - [STATE(339)] = { - [sym_else_clause] = STATE(416), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_macro_rules_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_QMARK] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1415), - [anon_sym_i8] = ACTIONS(1415), - [anon_sym_u16] = ACTIONS(1415), - [anon_sym_i16] = ACTIONS(1415), - [anon_sym_u32] = ACTIONS(1415), - [anon_sym_i32] = ACTIONS(1415), - [anon_sym_u64] = ACTIONS(1415), - [anon_sym_i64] = ACTIONS(1415), - [anon_sym_u128] = ACTIONS(1415), - [anon_sym_i128] = ACTIONS(1415), - [anon_sym_isize] = ACTIONS(1415), - [anon_sym_usize] = ACTIONS(1415), - [anon_sym_f32] = ACTIONS(1415), - [anon_sym_f64] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_str] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_SLASH] = ACTIONS(1415), - [anon_sym_PERCENT] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE_PIPE] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1415), - [anon_sym_PLUS_EQ] = ACTIONS(1413), - [anon_sym_DASH_EQ] = ACTIONS(1413), - [anon_sym_STAR_EQ] = ACTIONS(1413), - [anon_sym_SLASH_EQ] = ACTIONS(1413), - [anon_sym_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_CARET_EQ] = ACTIONS(1413), - [anon_sym_AMP_EQ] = ACTIONS(1413), - [anon_sym_PIPE_EQ] = ACTIONS(1413), - [anon_sym_LT_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_GT_EQ] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1415), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), - [anon_sym_COLON_COLON] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_as] = ACTIONS(1415), - [anon_sym_async] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_enum] = ACTIONS(1415), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_gen] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_impl] = ACTIONS(1415), - [anon_sym_let] = ACTIONS(1415), - [anon_sym_loop] = ACTIONS(1415), - [anon_sym_match] = ACTIONS(1415), - [anon_sym_mod] = ACTIONS(1415), - [anon_sym_pub] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_struct] = ACTIONS(1415), - [anon_sym_trait] = ACTIONS(1415), - [anon_sym_type] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_unsafe] = ACTIONS(1415), - [anon_sym_use] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1415), - [anon_sym_else] = ACTIONS(1417), - [anon_sym_yield] = ACTIONS(1415), - [anon_sym_move] = ACTIONS(1415), - [anon_sym_try] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1413), - [aux_sym_string_literal_token1] = ACTIONS(1413), - [sym_char_literal] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1415), - [sym_super] = ACTIONS(1415), - [sym_crate] = ACTIONS(1415), - [sym_metavariable] = ACTIONS(1413), - [sym__raw_string_literal_start] = ACTIONS(1413), - [sym_float_literal] = ACTIONS(1413), + [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(340)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), + [STATE(331)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55905,7 +54988,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -55940,168 +55023,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(341)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3236), - [sym_variadic_parameter] = STATE(3236), - [sym_parameter] = STATE(3236), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2888), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1435), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1591), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56129,7 +55100,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(1075), + [anon_sym_DOT_DOT] = ACTIONS(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -56164,56 +55135,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(343)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), + [STATE(333)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56241,7 +55212,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -56276,60 +55247,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(344)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1948), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(484), - [sym_match_expression] = STATE(484), - [sym_while_expression] = STATE(484), - [sym_loop_expression] = STATE(484), - [sym_for_expression] = STATE(484), - [sym_const_block] = STATE(484), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3733), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(484), - [sym_async_block] = STATE(484), - [sym_gen_block] = STATE(484), - [sym_try_block] = STATE(484), - [sym_block] = STATE(484), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), + [STATE(334)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1467), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(335)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56353,27 +55436,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1401), + [anon_sym_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(1403), - [anon_sym_while] = ACTIONS(1405), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56388,56 +55471,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(345)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1926), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56500,103 +55583,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(346)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(465), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56605,222 +55688,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1937), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(477), - [sym_match_expression] = STATE(477), - [sym_while_expression] = STATE(477), - [sym_loop_expression] = STATE(477), - [sym_for_expression] = STATE(477), - [sym_const_block] = STATE(477), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3733), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(477), - [sym_async_block] = STATE(477), - [sym_gen_block] = STATE(477), - [sym_try_block] = STATE(477), - [sym_block] = STATE(477), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), + [STATE(338)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1415), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), [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(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(339), + [STATE(339)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56829,110 +55912,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(339), + [STATE(340)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1455), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56941,110 +56024,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1435), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(465), + [STATE(341)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57053,222 +56136,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(351)] = { - [sym_bracketed_type] = STATE(3631), - [sym_generic_function] = STATE(1708), - [sym_generic_type_with_turbofish] = STATE(3029), - [sym__expression_except_range] = STATE(1700), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3356), - [sym_range_expression] = STATE(1712), - [sym_unary_expression] = STATE(1708), - [sym_try_expression] = STATE(1708), - [sym_reference_expression] = STATE(1708), - [sym_binary_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_compound_assignment_expr] = STATE(1708), - [sym_type_cast_expression] = STATE(1708), - [sym_return_expression] = STATE(1708), - [sym_yield_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_array_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_tuple_expression] = STATE(1708), - [sym_unit_expression] = STATE(1708), - [sym_struct_expression] = STATE(1708), - [sym_if_expression] = STATE(1708), - [sym_match_expression] = STATE(1708), - [sym_while_expression] = STATE(1708), - [sym_loop_expression] = STATE(1708), - [sym_for_expression] = STATE(1708), - [sym_const_block] = STATE(1708), - [sym_closure_expression] = STATE(1708), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3739), - [sym_break_expression] = STATE(1708), - [sym_continue_expression] = STATE(1708), - [sym_index_expression] = STATE(1708), - [sym_await_expression] = STATE(1708), - [sym_field_expression] = STATE(1650), - [sym_unsafe_block] = STATE(1708), - [sym_async_block] = STATE(1708), - [sym_gen_block] = STATE(1708), - [sym_try_block] = STATE(1708), - [sym_block] = STATE(1708), - [sym__literal] = STATE(1708), - [sym_string_literal] = STATE(1835), - [sym_raw_string_literal] = STATE(1835), - [sym_boolean_literal] = STATE(1835), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(352)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(465), + [STATE(342)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57277,110 +56248,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(465), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57389,110 +56360,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(354)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(465), + [STATE(344)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -57501,110 +56472,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(465), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57613,110 +56584,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(356)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(465), + [STATE(346)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57725,110 +56696,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(357)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(339), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57837,110 +56808,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(339), + [STATE(348)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57949,110 +56920,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1527), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(465), + [STATE(349)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58061,110 +57032,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(360)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(465), + [STATE(350)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58173,63 +57144,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), + [STATE(351)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58257,7 +57228,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58292,103 +57263,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(465), + [STATE(352)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1449), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58397,63 +57368,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1921), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), + [STATE(353)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58516,168 +57487,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(364)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1922), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [STATE(354)] = { + [sym_bracketed_type] = STATE(3667), + [sym_generic_function] = STATE(1920), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1706), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(1634), + [sym_scoped_type_identifier_in_expression_position] = STATE(3327), + [sym_range_expression] = STATE(1718), + [sym_unary_expression] = STATE(1920), + [sym_try_expression] = STATE(1920), + [sym_reference_expression] = STATE(1920), + [sym_binary_expression] = STATE(1920), + [sym_assignment_expression] = STATE(1920), + [sym_compound_assignment_expr] = STATE(1920), + [sym_type_cast_expression] = STATE(1920), + [sym_return_expression] = STATE(1920), + [sym_yield_expression] = STATE(1920), + [sym_call_expression] = STATE(1920), + [sym_array_expression] = STATE(1920), + [sym_parenthesized_expression] = STATE(1920), + [sym_tuple_expression] = STATE(1920), + [sym_unit_expression] = STATE(1920), + [sym_struct_expression] = STATE(1920), + [sym_if_expression] = STATE(1920), + [sym_match_expression] = STATE(1920), + [sym_while_expression] = STATE(1920), + [sym_loop_expression] = STATE(1920), + [sym_for_expression] = STATE(1920), + [sym_const_block] = STATE(1920), + [sym_closure_expression] = STATE(1920), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3773), + [sym_break_expression] = STATE(1920), + [sym_continue_expression] = STATE(1920), + [sym_index_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_field_expression] = STATE(1693), + [sym_unsafe_block] = STATE(1920), + [sym_async_block] = STATE(1920), + [sym_gen_block] = STATE(1920), + [sym_try_block] = STATE(1920), + [sym_block] = STATE(1920), + [sym__literal] = STATE(1920), + [sym_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(469), + [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(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(365)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), + [STATE(355)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58740,56 +57711,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), + [STATE(356)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58852,56 +57823,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(367)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), + [STATE(357)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58964,56 +57935,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(368)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1925), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(359)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1449), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59041,7 +58124,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(1093), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -59076,103 +58159,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(465), + [STATE(360)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -59181,110 +58264,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(339), + [STATE(361)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(475), [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(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [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(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -59293,63 +58376,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1927), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), + [STATE(362)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59412,103 +58495,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(372)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1928), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(339), + [STATE(363)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(475), [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(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [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(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59517,63 +58600,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), + [STATE(364)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59636,103 +58719,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(374)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1930), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(339), + [STATE(365)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(475), [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(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [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(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -59741,110 +58824,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(465), + [STATE(366)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1455), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1069), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(489), [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(489), [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), @@ -59853,110 +58936,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [sym_identifier] = ACTIONS(465), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [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(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_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(1369), - [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), @@ -59965,110 +59048,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(377)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym_identifier] = ACTIONS(465), + [STATE(368)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(1061), - [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), @@ -60077,110 +59160,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(378)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym_identifier] = ACTIONS(465), + [STATE(369)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(913), - [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), @@ -60189,110 +59272,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(379)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1435), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym_identifier] = ACTIONS(465), + [STATE(370)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(1061), - [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), @@ -60301,63 +59384,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1955), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), + [STATE(371)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60420,103 +59503,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(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1633), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(465), + [STATE(372)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(913), - [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), @@ -60525,110 +59608,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(382)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(465), + [STATE(373)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1640), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(491), [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(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60637,222 +59720,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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(219), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(465), + [STATE(374)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_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(1369), - [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_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(384)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_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), @@ -60861,110 +59832,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(385)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1634), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [sym_identifier] = ACTIONS(465), + [STATE(375)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1946), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(913), - [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), @@ -60973,110 +59944,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(386)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(465), + [STATE(376)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(1061), - [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), @@ -61085,110 +60056,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(387)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(2951), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(250), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(465), + [STATE(377)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), + [anon_sym_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(913), - [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), @@ -61197,63 +60168,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3505), - [sym_generic_function] = STATE(1463), - [sym_generic_type_with_turbofish] = STATE(3089), - [sym__expression_except_range] = STATE(1277), - [sym__expression] = STATE(1919), - [sym_macro_invocation] = STATE(1528), - [sym_scoped_identifier] = STATE(1540), - [sym_scoped_type_identifier_in_expression_position] = STATE(3386), - [sym_range_expression] = STATE(1494), - [sym_unary_expression] = STATE(1463), - [sym_try_expression] = STATE(1463), - [sym_reference_expression] = STATE(1463), - [sym_binary_expression] = STATE(1463), - [sym_assignment_expression] = STATE(1463), - [sym_compound_assignment_expr] = STATE(1463), - [sym_type_cast_expression] = STATE(1463), - [sym_return_expression] = STATE(1463), - [sym_yield_expression] = STATE(1463), - [sym_call_expression] = STATE(1463), - [sym_array_expression] = STATE(1463), - [sym_parenthesized_expression] = STATE(1463), - [sym_tuple_expression] = STATE(1463), - [sym_unit_expression] = STATE(1463), - [sym_struct_expression] = STATE(1463), - [sym_if_expression] = STATE(1463), - [sym_match_expression] = STATE(1463), - [sym_while_expression] = STATE(1463), - [sym_loop_expression] = STATE(1463), - [sym_for_expression] = STATE(1463), - [sym_const_block] = STATE(1463), - [sym_closure_expression] = STATE(1463), - [sym_closure_parameters] = STATE(251), - [sym_label] = STATE(3672), - [sym_break_expression] = STATE(1463), - [sym_continue_expression] = STATE(1463), - [sym_index_expression] = STATE(1463), - [sym_await_expression] = STATE(1463), - [sym_field_expression] = STATE(1161), - [sym_unsafe_block] = STATE(1463), - [sym_async_block] = STATE(1463), - [sym_gen_block] = STATE(1463), - [sym_try_block] = STATE(1463), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1463), - [sym_string_literal] = STATE(1495), - [sym_raw_string_literal] = STATE(1495), - [sym_boolean_literal] = STATE(1495), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), + [STATE(378)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1949), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -61316,674 +60287,1911 @@ 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(389)] = { - [sym_line_comment] = STATE(389), + [STATE(379)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(380)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(381)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(382)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(383)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(384)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(385)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [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(386)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(387)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(388)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(389)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(390)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [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), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(391)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [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), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(489), + [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(489), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(392)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3105), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1607), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(1453), + [sym_match_expression] = STATE(1453), + [sym_while_expression] = STATE(1453), + [sym_loop_expression] = STATE(1453), + [sym_for_expression] = STATE(1453), + [sym_const_block] = STATE(1453), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3706), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(1453), + [sym_async_block] = STATE(1453), + [sym_gen_block] = STATE(1453), + [sym_try_block] = STATE(1453), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [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), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(489), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(491), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(495), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_move] = ACTIONS(499), + [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(501), + [sym_super] = ACTIONS(503), + [sym_crate] = ACTIONS(503), + [sym_metavariable] = ACTIONS(505), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(393)] = { + [sym_bracketed_type] = STATE(3666), + [sym_generic_function] = STATE(1453), + [sym_generic_type_with_turbofish] = STATE(3038), + [sym__expression_except_range] = STATE(1267), + [sym__expression] = STATE(1973), + [sym_macro_invocation] = STATE(1531), + [sym_scoped_identifier] = STATE(1445), + [sym_scoped_type_identifier_in_expression_position] = STATE(3222), + [sym_range_expression] = STATE(1485), + [sym_unary_expression] = STATE(1453), + [sym_try_expression] = STATE(1453), + [sym_reference_expression] = STATE(1453), + [sym_binary_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_compound_assignment_expr] = STATE(1453), + [sym_type_cast_expression] = STATE(1453), + [sym_return_expression] = STATE(1453), + [sym_yield_expression] = STATE(1453), + [sym_call_expression] = STATE(1453), + [sym_array_expression] = STATE(1453), + [sym_parenthesized_expression] = STATE(1453), + [sym_tuple_expression] = STATE(1453), + [sym_unit_expression] = STATE(1453), + [sym_struct_expression] = STATE(1453), + [sym_if_expression] = STATE(479), + [sym_match_expression] = STATE(479), + [sym_while_expression] = STATE(479), + [sym_loop_expression] = STATE(479), + [sym_for_expression] = STATE(479), + [sym_const_block] = STATE(479), + [sym_closure_expression] = STATE(1453), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1453), + [sym_continue_expression] = STATE(1453), + [sym_index_expression] = STATE(1453), + [sym_await_expression] = STATE(1453), + [sym_field_expression] = STATE(1156), + [sym_unsafe_block] = STATE(479), + [sym_async_block] = STATE(479), + [sym_gen_block] = STATE(479), + [sym_try_block] = STATE(479), + [sym_block] = STATE(479), + [sym__literal] = STATE(1453), + [sym_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), [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), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1383), + [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(1385), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1403), + [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(394)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3399), - [sym_variadic_parameter] = STATE(3399), - [sym_parameter] = STATE(3399), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2949), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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), @@ -62074,6 +62282,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), @@ -62091,9 +62300,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), @@ -62184,6 +62393,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), @@ -62201,9 +62411,9 @@ 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), @@ -62294,6 +62504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -62311,20 +62522,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1449), [sym_float_literal] = ACTIONS(1449), }, - [STATE(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), + [STATE(399)] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1453), [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1457), [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), [anon_sym_u8] = ACTIONS(1455), [anon_sym_i8] = ACTIONS(1455), [anon_sym_u16] = ACTIONS(1455), @@ -62342,42 +62553,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1455), [anon_sym_str] = ACTIONS(1455), [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_PLUS_EQ] = ACTIONS(1453), - [anon_sym_DASH_EQ] = ACTIONS(1453), - [anon_sym_STAR_EQ] = ACTIONS(1453), - [anon_sym_SLASH_EQ] = ACTIONS(1453), - [anon_sym_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_CARET_EQ] = ACTIONS(1453), - [anon_sym_AMP_EQ] = ACTIONS(1453), - [anon_sym_PIPE_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_EQ] = ACTIONS(1453), - [anon_sym_GT_GT_EQ] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), [anon_sym_COLON_COLON] = ACTIONS(1453), [anon_sym_POUND] = ACTIONS(1453), [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1459), [anon_sym_async] = ACTIONS(1455), [anon_sym_break] = ACTIONS(1455), [anon_sym_const] = ACTIONS(1455), @@ -62421,378 +62632,488 @@ 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(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1457), - [sym_identifier] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_macro_rules_BANG] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1459), - [anon_sym_i8] = ACTIONS(1459), - [anon_sym_u16] = ACTIONS(1459), - [anon_sym_i16] = ACTIONS(1459), - [anon_sym_u32] = ACTIONS(1459), - [anon_sym_i32] = ACTIONS(1459), - [anon_sym_u64] = ACTIONS(1459), - [anon_sym_i64] = ACTIONS(1459), - [anon_sym_u128] = ACTIONS(1459), - [anon_sym_i128] = ACTIONS(1459), - [anon_sym_isize] = ACTIONS(1459), - [anon_sym_usize] = ACTIONS(1459), - [anon_sym_f32] = ACTIONS(1459), - [anon_sym_f64] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_str] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1459), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_gen] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_impl] = ACTIONS(1459), - [anon_sym_let] = ACTIONS(1459), - [anon_sym_loop] = ACTIONS(1459), - [anon_sym_match] = ACTIONS(1459), - [anon_sym_mod] = ACTIONS(1459), - [anon_sym_pub] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_trait] = ACTIONS(1459), - [anon_sym_type] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1459), - [anon_sym_use] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_move] = ACTIONS(1459), - [anon_sym_try] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym__raw_string_literal_start] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), - }, [STATE(400)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3009), + [sym_variadic_parameter] = STATE(3009), + [sym_parameter] = STATE(3009), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1461), - [sym_identifier] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_macro_rules_BANG] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_u8] = ACTIONS(1463), - [anon_sym_i8] = ACTIONS(1463), - [anon_sym_u16] = ACTIONS(1463), - [anon_sym_i16] = ACTIONS(1463), - [anon_sym_u32] = ACTIONS(1463), - [anon_sym_i32] = ACTIONS(1463), - [anon_sym_u64] = ACTIONS(1463), - [anon_sym_i64] = ACTIONS(1463), - [anon_sym_u128] = ACTIONS(1463), - [anon_sym_i128] = ACTIONS(1463), - [anon_sym_isize] = ACTIONS(1463), - [anon_sym_usize] = ACTIONS(1463), - [anon_sym_f32] = ACTIONS(1463), - [anon_sym_f64] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_str] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_as] = ACTIONS(1463), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_gen] = ACTIONS(1463), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_impl] = ACTIONS(1463), - [anon_sym_let] = ACTIONS(1463), - [anon_sym_loop] = ACTIONS(1463), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_mod] = ACTIONS(1463), - [anon_sym_pub] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_struct] = ACTIONS(1463), - [anon_sym_trait] = ACTIONS(1463), - [anon_sym_type] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_unsafe] = ACTIONS(1463), - [anon_sym_use] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_extern] = ACTIONS(1463), - [anon_sym_yield] = ACTIONS(1463), - [anon_sym_move] = ACTIONS(1463), - [anon_sym_try] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1461), - [aux_sym_string_literal_token1] = ACTIONS(1461), - [sym_char_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1461), - [sym__raw_string_literal_start] = ACTIONS(1461), - [sym_float_literal] = ACTIONS(1461), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(401)] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1465), - [sym_identifier] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_macro_rules_BANG] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u128] = ACTIONS(1467), - [anon_sym_i128] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_str] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_PIPE_PIPE] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_COLON_COLON] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_async] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_default] = ACTIONS(1467), - [anon_sym_enum] = ACTIONS(1467), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_gen] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_impl] = ACTIONS(1467), - [anon_sym_let] = ACTIONS(1467), - [anon_sym_loop] = ACTIONS(1467), - [anon_sym_match] = ACTIONS(1467), - [anon_sym_mod] = ACTIONS(1467), - [anon_sym_pub] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_trait] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1467), - [anon_sym_use] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_extern] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1467), - [anon_sym_move] = ACTIONS(1467), - [anon_sym_try] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1465), - [aux_sym_string_literal_token1] = ACTIONS(1465), - [sym_char_literal] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1467), - [sym_super] = ACTIONS(1467), - [sym_crate] = ACTIONS(1467), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1465), - [sym_float_literal] = ACTIONS(1465), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_macro_rules_BANG] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_u8] = ACTIONS(1465), + [anon_sym_i8] = ACTIONS(1465), + [anon_sym_u16] = ACTIONS(1465), + [anon_sym_i16] = ACTIONS(1465), + [anon_sym_u32] = ACTIONS(1465), + [anon_sym_i32] = ACTIONS(1465), + [anon_sym_u64] = ACTIONS(1465), + [anon_sym_i64] = ACTIONS(1465), + [anon_sym_u128] = ACTIONS(1465), + [anon_sym_i128] = ACTIONS(1465), + [anon_sym_isize] = ACTIONS(1465), + [anon_sym_usize] = ACTIONS(1465), + [anon_sym_f32] = ACTIONS(1465), + [anon_sym_f64] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_str] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1463), + [anon_sym_DASH_EQ] = ACTIONS(1463), + [anon_sym_STAR_EQ] = ACTIONS(1463), + [anon_sym_SLASH_EQ] = ACTIONS(1463), + [anon_sym_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_CARET_EQ] = ACTIONS(1463), + [anon_sym_AMP_EQ] = ACTIONS(1463), + [anon_sym_PIPE_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_GT_EQ] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(1465), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_gen] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_impl] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(1465), + [anon_sym_loop] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [anon_sym_mod] = ACTIONS(1465), + [anon_sym_pub] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_unsafe] = ACTIONS(1465), + [anon_sym_use] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_extern] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_move] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1463), + [aux_sym_string_literal_token1] = ACTIONS(1463), + [sym_char_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_crate] = ACTIONS(1465), + [sym_metavariable] = ACTIONS(1463), + [sym__raw_string_literal_start] = ACTIONS(1463), + [sym_float_literal] = ACTIONS(1463), }, [STATE(402)] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1469), - [sym_identifier] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_macro_rules_BANG] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_macro_rules_BANG] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1467), + [anon_sym_u8] = ACTIONS(1469), + [anon_sym_i8] = ACTIONS(1469), + [anon_sym_u16] = ACTIONS(1469), + [anon_sym_i16] = ACTIONS(1469), + [anon_sym_u32] = ACTIONS(1469), + [anon_sym_i32] = ACTIONS(1469), + [anon_sym_u64] = ACTIONS(1469), + [anon_sym_i64] = ACTIONS(1469), + [anon_sym_u128] = ACTIONS(1469), + [anon_sym_i128] = ACTIONS(1469), + [anon_sym_isize] = ACTIONS(1469), + [anon_sym_usize] = ACTIONS(1469), + [anon_sym_f32] = ACTIONS(1469), + [anon_sym_f64] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_str] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1469), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1469), + [anon_sym_PLUS_EQ] = ACTIONS(1467), + [anon_sym_DASH_EQ] = ACTIONS(1467), + [anon_sym_STAR_EQ] = ACTIONS(1467), + [anon_sym_SLASH_EQ] = ACTIONS(1467), + [anon_sym_PERCENT_EQ] = ACTIONS(1467), + [anon_sym_CARET_EQ] = ACTIONS(1467), + [anon_sym_AMP_EQ] = ACTIONS(1467), + [anon_sym_PIPE_EQ] = ACTIONS(1467), + [anon_sym_LT_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_GT_EQ] = ACTIONS(1467), + [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), + [anon_sym_COLON_COLON] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_as] = ACTIONS(1469), + [anon_sym_async] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_gen] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_impl] = ACTIONS(1469), + [anon_sym_let] = ACTIONS(1469), + [anon_sym_loop] = ACTIONS(1469), + [anon_sym_match] = ACTIONS(1469), + [anon_sym_mod] = ACTIONS(1469), + [anon_sym_pub] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_struct] = ACTIONS(1469), + [anon_sym_trait] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1469), + [anon_sym_unsafe] = ACTIONS(1469), + [anon_sym_use] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_move] = ACTIONS(1469), + [anon_sym_try] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1467), + [aux_sym_string_literal_token1] = ACTIONS(1467), + [sym_char_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1469), + [sym_super] = ACTIONS(1469), + [sym_crate] = ACTIONS(1469), + [sym_metavariable] = ACTIONS(1467), + [sym__raw_string_literal_start] = ACTIONS(1467), + [sym_float_literal] = ACTIONS(1467), + }, + [STATE(403)] = { + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1475), - [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_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), [anon_sym_SLASH] = ACTIONS(1473), [anon_sym_PERCENT] = ACTIONS(1473), [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), [anon_sym_LT_LT] = ACTIONS(1473), [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(404)] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_macro_rules_BANG] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), [anon_sym_PLUS_EQ] = ACTIONS(1475), [anon_sym_DASH_EQ] = ACTIONS(1475), [anon_sym_STAR_EQ] = ACTIONS(1475), @@ -62803,287 +63124,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1475), [anon_sym_LT_LT_EQ] = ACTIONS(1475), [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1477), [anon_sym_EQ_EQ] = ACTIONS(1475), [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), [anon_sym_GT_EQ] = ACTIONS(1475), [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_async] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_gen] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_impl] = ACTIONS(1471), - [anon_sym_let] = ACTIONS(1471), - [anon_sym_loop] = ACTIONS(1471), - [anon_sym_match] = ACTIONS(1471), - [anon_sym_mod] = ACTIONS(1471), - [anon_sym_pub] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_struct] = ACTIONS(1471), - [anon_sym_trait] = ACTIONS(1471), - [anon_sym_type] = ACTIONS(1471), - [anon_sym_union] = ACTIONS(1471), - [anon_sym_unsafe] = ACTIONS(1471), - [anon_sym_use] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_yield] = ACTIONS(1471), - [anon_sym_move] = ACTIONS(1471), - [anon_sym_try] = 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(403)] = { - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(1477), - [sym_identifier] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_macro_rules_BANG] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1479), - [anon_sym_i8] = ACTIONS(1479), - [anon_sym_u16] = ACTIONS(1479), - [anon_sym_i16] = ACTIONS(1479), - [anon_sym_u32] = ACTIONS(1479), - [anon_sym_i32] = ACTIONS(1479), - [anon_sym_u64] = ACTIONS(1479), - [anon_sym_i64] = ACTIONS(1479), - [anon_sym_u128] = ACTIONS(1479), - [anon_sym_i128] = ACTIONS(1479), - [anon_sym_isize] = ACTIONS(1479), - [anon_sym_usize] = ACTIONS(1479), - [anon_sym_f32] = ACTIONS(1479), - [anon_sym_f64] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_str] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_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_LT] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_async] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_gen] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_impl] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_mod] = ACTIONS(1479), - [anon_sym_pub] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_trait] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_unsafe] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_move] = ACTIONS(1479), - [anon_sym_try] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [aux_sym_string_literal_token1] = ACTIONS(1477), - [sym_char_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym__raw_string_literal_start] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), - }, - [STATE(404)] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_macro_rules_BANG] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_extern] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_move] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym_metavariable] = ACTIONS(1043), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_async] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_impl] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_loop] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [anon_sym_mod] = ACTIONS(1477), + [anon_sym_pub] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(1477), + [anon_sym_trait] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_unsafe] = ACTIONS(1477), + [anon_sym_use] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_extern] = ACTIONS(1477), + [anon_sym_yield] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1477), + [anon_sym_try] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), }, [STATE(405)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3392), + [sym_variadic_parameter] = STATE(3392), + [sym_parameter] = STATE(3392), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3141), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(406)] = { + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), [ts_builtin_sym_end] = ACTIONS(1481), [sym_identifier] = ACTIONS(1483), [anon_sym_SEMI] = ACTIONS(1481), @@ -63191,9 +63402,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1481), [sym_float_literal] = ACTIONS(1481), }, - [STATE(406)] = { - [sym_line_comment] = STATE(406), - [sym_block_comment] = STATE(406), + [STATE(407)] = { + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), [ts_builtin_sym_end] = ACTIONS(1485), [sym_identifier] = ACTIONS(1487), [anon_sym_SEMI] = ACTIONS(1485), @@ -63301,9 +63512,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1485), [sym_float_literal] = ACTIONS(1485), }, - [STATE(407)] = { - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), + [STATE(408)] = { + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), [ts_builtin_sym_end] = ACTIONS(1489), [sym_identifier] = ACTIONS(1491), [anon_sym_SEMI] = ACTIONS(1489), @@ -63411,9 +63622,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1489), [sym_float_literal] = ACTIONS(1489), }, - [STATE(408)] = { - [sym_line_comment] = STATE(408), - [sym_block_comment] = STATE(408), + [STATE(409)] = { + [sym_line_comment] = STATE(409), + [sym_block_comment] = STATE(409), [ts_builtin_sym_end] = ACTIONS(1493), [sym_identifier] = ACTIONS(1495), [anon_sym_SEMI] = ACTIONS(1493), @@ -63521,9 +63732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1493), [sym_float_literal] = ACTIONS(1493), }, - [STATE(409)] = { - [sym_line_comment] = STATE(409), - [sym_block_comment] = STATE(409), + [STATE(410)] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), [ts_builtin_sym_end] = ACTIONS(1497), [sym_identifier] = ACTIONS(1499), [anon_sym_SEMI] = ACTIONS(1497), @@ -63631,9 +63842,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1497), [sym_float_literal] = ACTIONS(1497), }, - [STATE(410)] = { - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), + [STATE(411)] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), [ts_builtin_sym_end] = ACTIONS(1501), [sym_identifier] = ACTIONS(1503), [anon_sym_SEMI] = ACTIONS(1501), @@ -63741,9 +63952,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1501), [sym_float_literal] = ACTIONS(1501), }, - [STATE(411)] = { - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), + [STATE(412)] = { + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), [ts_builtin_sym_end] = ACTIONS(1505), [sym_identifier] = ACTIONS(1507), [anon_sym_SEMI] = ACTIONS(1505), @@ -63851,9 +64062,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1505), [sym_float_literal] = ACTIONS(1505), }, - [STATE(412)] = { - [sym_line_comment] = STATE(412), - [sym_block_comment] = STATE(412), + [STATE(413)] = { + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), [ts_builtin_sym_end] = ACTIONS(1509), [sym_identifier] = ACTIONS(1511), [anon_sym_SEMI] = ACTIONS(1509), @@ -63961,9 +64172,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1509), [sym_float_literal] = ACTIONS(1509), }, - [STATE(413)] = { - [sym_line_comment] = STATE(413), - [sym_block_comment] = STATE(413), + [STATE(414)] = { + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), [ts_builtin_sym_end] = ACTIONS(1513), [sym_identifier] = ACTIONS(1515), [anon_sym_SEMI] = ACTIONS(1513), @@ -64071,225 +64282,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1513), [sym_float_literal] = ACTIONS(1513), }, - [STATE(414)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3074), - [sym_variadic_parameter] = STATE(3074), - [sym_parameter] = STATE(3074), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2818), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(414), - [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, [STATE(415)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(2874), - [sym_variadic_parameter] = STATE(2874), - [sym_parameter] = STATE(2874), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2607), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_macro_rules_BANG] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PERCENT_EQ] = ACTIONS(1517), + [anon_sym_CARET_EQ] = ACTIONS(1517), + [anon_sym_AMP_EQ] = ACTIONS(1517), + [anon_sym_PIPE_EQ] = ACTIONS(1517), + [anon_sym_LT_LT_EQ] = ACTIONS(1517), + [anon_sym_GT_GT_EQ] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1517), + [anon_sym_BANG_EQ] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_GT_EQ] = ACTIONS(1517), + [anon_sym_LT_EQ] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_gen] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_impl] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_mod] = ACTIONS(1519), + [anon_sym_pub] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_struct] = ACTIONS(1519), + [anon_sym_trait] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_unsafe] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_yield] = ACTIONS(1519), + [anon_sym_move] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym__raw_string_literal_start] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), }, [STATE(416)] = { [sym_line_comment] = STATE(416), @@ -64402,569 +64503,569 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1521), }, [STATE(417)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2920), + [sym_variadic_parameter] = STATE(2920), + [sym_parameter] = STATE(2920), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2792), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_macro_rules_BANG] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_LBRACE] = 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_BANG] = 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_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_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_async] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_enum] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_impl] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_mod] = ACTIONS(1527), - [anon_sym_pub] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_trait] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_unsafe] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_move] = ACTIONS(1527), - [anon_sym_try] = 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), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(418)] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_macro_rules_BANG] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_move] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym_metavariable] = ACTIONS(1039), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_macro_rules_BANG] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_unsafe] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, [STATE(419)] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [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), + [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), }, [STATE(420)] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [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), + [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(1459), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_QMARK] = ACTIONS(1457), + [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(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [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(1537), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(1459), + [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), }, [STATE(421)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_self_parameter] = STATE(3133), - [sym_variadic_parameter] = STATE(3133), - [sym_parameter] = STATE(3133), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2697), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3069), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3321), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_macro_rules_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1047), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), }, [STATE(422)] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), [ts_builtin_sym_end] = ACTIONS(1539), [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1539), [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1475), + [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), @@ -64982,42 +65083,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1541), [anon_sym_str] = ACTIONS(1541), [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), + [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(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_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(1473), + [anon_sym_as] = ACTIONS(1541), [anon_sym_async] = ACTIONS(1541), [anon_sym_break] = ACTIONS(1541), [anon_sym_const] = ACTIONS(1541), @@ -65064,164 +65165,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(423)] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_yield] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_macro_rules_BANG] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_pub] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_trait] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_move] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3049), - [sym_bracketed_type] = STATE(3665), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3407), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2511), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2747), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_macro_rules_BANG] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1547), [anon_sym_u8] = ACTIONS(1549), [anon_sym_i8] = ACTIONS(1549), [anon_sym_u16] = ACTIONS(1549), @@ -65239,4682 +65303,4687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1549), [anon_sym_str] = ACTIONS(1549), [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_gen] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_impl] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_loop] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1549), + [anon_sym_mod] = ACTIONS(1549), + [anon_sym_pub] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_struct] = ACTIONS(1549), + [anon_sym_trait] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_unsafe] = ACTIONS(1549), + [anon_sym_use] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_move] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1547), + [aux_sym_string_literal_token1] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_crate] = ACTIONS(1549), + [sym_metavariable] = ACTIONS(1547), + [sym__raw_string_literal_start] = ACTIONS(1547), + [sym_float_literal] = ACTIONS(1547), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2035), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2185), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1311), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_macro_rules_BANG] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_async] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_gen] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_impl] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_mod] = ACTIONS(1553), + [anon_sym_pub] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_trait] = ACTIONS(1553), + [anon_sym_type] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_unsafe] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_move] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1551), + [aux_sym_string_literal_token1] = ACTIONS(1551), + [sym_char_literal] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_crate] = ACTIONS(1553), + [sym_metavariable] = ACTIONS(1551), + [sym__raw_string_literal_start] = ACTIONS(1551), + [sym_float_literal] = ACTIONS(1551), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2035), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2185), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3045), + [sym_variadic_parameter] = STATE(3045), + [sym_parameter] = STATE(3045), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3008), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3210), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(427)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2210), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(428)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2035), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2185), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2035), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2185), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(2275), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2828), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1117), + [anon_sym_BANG] = ACTIONS(1119), [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2210), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1311), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(431)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2035), - [sym_bracketed_type] = STATE(3665), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3407), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2511), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2185), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [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(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1203), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3656), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3312), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2555), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2210), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1313), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1203), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3664), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3404), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2516), - [sym_scoped_identifier] = STATE(2187), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2210), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1283), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1587), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3665), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3407), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2511), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(2189), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2210), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [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(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(435)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(436)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3431), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2224), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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), - [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(2317), + [sym_identifier] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1115), + [anon_sym_i8] = ACTIONS(1115), + [anon_sym_u16] = ACTIONS(1115), + [anon_sym_i16] = ACTIONS(1115), + [anon_sym_u32] = ACTIONS(1115), + [anon_sym_i32] = ACTIONS(1115), + [anon_sym_u64] = ACTIONS(1115), + [anon_sym_i64] = ACTIONS(1115), + [anon_sym_u128] = ACTIONS(1115), + [anon_sym_i128] = ACTIONS(1115), + [anon_sym_isize] = ACTIONS(1115), + [anon_sym_usize] = ACTIONS(1115), + [anon_sym_f32] = ACTIONS(1115), + [anon_sym_f64] = ACTIONS(1115), + [anon_sym_bool] = ACTIONS(1115), + [anon_sym_str] = ACTIONS(1115), + [anon_sym_char] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1591), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), + [sym_crate] = ACTIONS(1173), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3691), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3333), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2540), + [sym_scoped_identifier] = STATE(2311), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1239), - [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(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [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(2317), + [sym_identifier] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u128] = ACTIONS(1187), + [anon_sym_i128] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_str] = ACTIONS(1187), + [anon_sym_char] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1199), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1595), + [sym_super] = ACTIONS(1203), + [sym_crate] = ACTIONS(1203), + [sym_metavariable] = ACTIONS(1205), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(438)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2202), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(2275), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1239), - [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(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [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(2317), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(2275), + [sym_scoped_type_identifier] = STATE(2186), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(440)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2213), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [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(1131), + [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(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2230), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [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(1131), + [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(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1649), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1651), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2496), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2689), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2689), - [sym__literal] = STATE(2689), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2401), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2401), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2556), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2556), - [sym__literal] = STATE(2556), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2431), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2431), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2498), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2498), - [sym__literal] = STATE(2498), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2464), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2564), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2564), - [sym__literal] = STATE(2564), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2436), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_type_binding] = STATE(2507), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_label] = STATE(3736), - [sym_block] = STATE(2507), - [sym__literal] = STATE(2507), - [sym_string_literal] = STATE(3110), - [sym_raw_string_literal] = STATE(3110), - [sym_boolean_literal] = STATE(3110), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(456)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3610), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2445), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2445), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2534), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2534), + [sym__literal] = STATE(2534), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(462), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [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(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(457)] = { - [sym_else_clause] = STATE(474), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2611), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2871), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2871), + [sym__literal] = STATE(2871), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_QMARK] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1415), - [anon_sym_i8] = ACTIONS(1415), - [anon_sym_u16] = ACTIONS(1415), - [anon_sym_i16] = ACTIONS(1415), - [anon_sym_u32] = ACTIONS(1415), - [anon_sym_i32] = ACTIONS(1415), - [anon_sym_u64] = ACTIONS(1415), - [anon_sym_i64] = ACTIONS(1415), - [anon_sym_u128] = ACTIONS(1415), - [anon_sym_i128] = ACTIONS(1415), - [anon_sym_isize] = ACTIONS(1415), - [anon_sym_usize] = ACTIONS(1415), - [anon_sym_f32] = ACTIONS(1415), - [anon_sym_f64] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_str] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_SLASH] = ACTIONS(1415), - [anon_sym_PERCENT] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE_PIPE] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1415), - [anon_sym_PLUS_EQ] = ACTIONS(1413), - [anon_sym_DASH_EQ] = ACTIONS(1413), - [anon_sym_STAR_EQ] = ACTIONS(1413), - [anon_sym_SLASH_EQ] = ACTIONS(1413), - [anon_sym_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_CARET_EQ] = ACTIONS(1413), - [anon_sym_AMP_EQ] = ACTIONS(1413), - [anon_sym_PIPE_EQ] = ACTIONS(1413), - [anon_sym_LT_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_GT_EQ] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1415), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym__] = ACTIONS(1415), - [anon_sym_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_COLON_COLON] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1413), - [anon_sym_as] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_gen] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_ref] = ACTIONS(1415), - [anon_sym_else] = ACTIONS(1703), - [sym_mutable_specifier] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1413), - [aux_sym_string_literal_token1] = ACTIONS(1413), - [sym_char_literal] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1415), - [sym_super] = ACTIONS(1415), - [sym_crate] = ACTIONS(1415), - [sym_metavariable] = ACTIONS(1413), - [sym__raw_string_literal_start] = ACTIONS(1413), - [sym_float_literal] = ACTIONS(1413), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(458)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3466), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2470), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2470), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2546), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2546), + [sym__literal] = STATE(2546), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_match_block_repeat1] = STATE(463), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [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(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(459)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3471), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2411), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2615), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2615), + [sym__literal] = STATE(2615), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1707), - [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(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(460)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3712), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2437), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_type_binding] = STATE(2511), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_label] = STATE(3770), + [sym_block] = STATE(2511), + [sym__literal] = STATE(2511), + [sym_string_literal] = STATE(3039), + [sym_raw_string_literal] = STATE(3039), + [sym_boolean_literal] = STATE(3039), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [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(2317), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [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(1177), + [sym_float_literal] = ACTIONS(1643), }, [STATE(461)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3680), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [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), + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(684), + [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(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), + [sym_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(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3491), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3672), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(479), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_match_block_repeat1] = STATE(469), + [aux_sym_match_arm_repeat1] = STATE(684), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1717), + [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(463)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3577), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_else_clause] = STATE(489), [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [aux_sym_match_block_repeat1] = STATE(479), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_QMARK] = ACTIONS(1405), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_CARET] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1405), + [anon_sym_LT_LT] = ACTIONS(1407), + [anon_sym_GT_GT] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1405), + [anon_sym_DASH_EQ] = ACTIONS(1405), + [anon_sym_STAR_EQ] = ACTIONS(1405), + [anon_sym_SLASH_EQ] = ACTIONS(1405), + [anon_sym_PERCENT_EQ] = ACTIONS(1405), + [anon_sym_CARET_EQ] = ACTIONS(1405), + [anon_sym_AMP_EQ] = ACTIONS(1405), + [anon_sym_PIPE_EQ] = ACTIONS(1405), + [anon_sym_LT_LT_EQ] = ACTIONS(1405), + [anon_sym_GT_GT_EQ] = ACTIONS(1405), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1405), + [anon_sym_BANG_EQ] = ACTIONS(1405), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym__] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_gen] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_ref] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1719), + [sym_mutable_specifier] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym__raw_string_literal_start] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), }, [STATE(464)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3776), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACK] = 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_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__] = ACTIONS(1429), - [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_COMMA] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_gen] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_ref] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [sym_mutable_specifier] = 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), + [aux_sym_match_block_repeat1] = STATE(467), + [aux_sym_match_arm_repeat1] = STATE(684), + [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(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3668), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [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), + [aux_sym_match_block_repeat1] = STATE(466), + [aux_sym_match_arm_repeat1] = STATE(684), + [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(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3501), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3612), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(479), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [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_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [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(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3498), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym__] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_ref] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [sym_mutable_specifier] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [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_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym__] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_ref] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [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(469)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_last_match_arm] = STATE(3737), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3655), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(479), - [aux_sym_match_arm_repeat1] = STATE(620), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [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(470)] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u128] = ACTIONS(1531), - [anon_sym_i128] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_str] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_SLASH] = ACTIONS(1531), - [anon_sym_PERCENT] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PERCENT_EQ] = ACTIONS(1529), - [anon_sym_CARET_EQ] = ACTIONS(1529), - [anon_sym_AMP_EQ] = ACTIONS(1529), - [anon_sym_PIPE_EQ] = ACTIONS(1529), - [anon_sym_LT_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_GT_EQ] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym__] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(1529), - [anon_sym_as] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_gen] = ACTIONS(1531), - [anon_sym_union] = ACTIONS(1531), - [anon_sym_ref] = ACTIONS(1531), - [sym_mutable_specifier] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1529), - [aux_sym_string_literal_token1] = ACTIONS(1529), - [sym_char_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1531), - [sym_super] = ACTIONS(1531), - [sym_crate] = ACTIONS(1531), - [sym_metavariable] = ACTIONS(1529), - [sym__raw_string_literal_start] = ACTIONS(1529), - [sym_float_literal] = ACTIONS(1529), - }, - [STATE(471)] = { - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym__] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_gen] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_ref] = ACTIONS(1495), - [sym_mutable_specifier] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), + [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(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), + [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(471)] = { + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [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(472)] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [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), + [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(473)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_last_match_arm] = STATE(3528), + [sym_match_pattern] = STATE(3746), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [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), + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(684), + [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(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), + [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(474)] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_PERCENT_EQ] = ACTIONS(1521), - [anon_sym_CARET_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_gen] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1523), - [sym_mutable_specifier] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym__raw_string_literal_start] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), - }, - [STATE(475)] = { - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_u8] = ACTIONS(1463), - [anon_sym_i8] = ACTIONS(1463), - [anon_sym_u16] = ACTIONS(1463), - [anon_sym_i16] = ACTIONS(1463), - [anon_sym_u32] = ACTIONS(1463), - [anon_sym_i32] = ACTIONS(1463), - [anon_sym_u64] = ACTIONS(1463), - [anon_sym_i64] = ACTIONS(1463), - [anon_sym_u128] = ACTIONS(1463), - [anon_sym_i128] = ACTIONS(1463), - [anon_sym_isize] = ACTIONS(1463), - [anon_sym_usize] = ACTIONS(1463), - [anon_sym_f32] = ACTIONS(1463), - [anon_sym_f64] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_str] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym__] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_gen] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1463), - [sym_mutable_specifier] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1461), - [aux_sym_string_literal_token1] = ACTIONS(1461), - [sym_char_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1461), - [sym__raw_string_literal_start] = ACTIONS(1461), - [sym_float_literal] = ACTIONS(1461), - }, - [STATE(476)] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), [sym_identifier] = ACTIONS(1447), [anon_sym_LPAREN] = ACTIONS(1445), [anon_sym_LBRACK] = ACTIONS(1445), @@ -69980,6 +70049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -69995,703 +70065,537 @@ 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(475)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3145), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2655), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1737), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(476)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(2901), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1751), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, [STATE(477)] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), [anon_sym_PLUS] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1711), - [anon_sym_i8] = ACTIONS(1711), - [anon_sym_u16] = ACTIONS(1711), - [anon_sym_i16] = ACTIONS(1711), - [anon_sym_u32] = ACTIONS(1711), - [anon_sym_i32] = ACTIONS(1711), - [anon_sym_u64] = ACTIONS(1711), - [anon_sym_i64] = ACTIONS(1711), - [anon_sym_u128] = ACTIONS(1711), - [anon_sym_i128] = ACTIONS(1711), - [anon_sym_isize] = ACTIONS(1711), - [anon_sym_usize] = ACTIONS(1711), - [anon_sym_f32] = ACTIONS(1711), - [anon_sym_f64] = ACTIONS(1711), - [anon_sym_bool] = ACTIONS(1711), - [anon_sym_str] = ACTIONS(1711), - [anon_sym_char] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), [anon_sym_SLASH] = ACTIONS(1473), [anon_sym_PERCENT] = ACTIONS(1473), [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), [anon_sym_LT_LT] = ACTIONS(1473), [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym__] = ACTIONS(1473), [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), [anon_sym_as] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_gen] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1711), - [sym_mutable_specifier] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1713), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_ref] = ACTIONS(1473), + [sym_mutable_specifier] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), }, [STATE(478)] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym__] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_COMMA] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_gen] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_ref] = ACTIONS(1499), - [sym_mutable_specifier] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym__raw_string_literal_start] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym__] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_ref] = ACTIONS(1545), + [sym_mutable_specifier] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), }, [STATE(479)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_arm] = STATE(1258), - [sym_match_pattern] = STATE(3540), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [aux_sym_match_block_repeat1] = STATE(479), - [aux_sym_match_arm_repeat1] = STATE(749), - [sym_identifier] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym__] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_ref] = ACTIONS(1760), - [sym_mutable_specifier] = ACTIONS(1763), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1769), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_crate] = ACTIONS(1775), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1753), + [anon_sym_i8] = ACTIONS(1753), + [anon_sym_u16] = ACTIONS(1753), + [anon_sym_i16] = ACTIONS(1753), + [anon_sym_u32] = ACTIONS(1753), + [anon_sym_i32] = ACTIONS(1753), + [anon_sym_u64] = ACTIONS(1753), + [anon_sym_i64] = ACTIONS(1753), + [anon_sym_u128] = ACTIONS(1753), + [anon_sym_i128] = ACTIONS(1753), + [anon_sym_isize] = ACTIONS(1753), + [anon_sym_usize] = ACTIONS(1753), + [anon_sym_f32] = ACTIONS(1753), + [anon_sym_f64] = ACTIONS(1753), + [anon_sym_bool] = ACTIONS(1753), + [anon_sym_str] = ACTIONS(1753), + [anon_sym_char] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1753), + [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(1753), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym__] = ACTIONS(1753), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_gen] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_ref] = ACTIONS(1753), + [sym_mutable_specifier] = ACTIONS(1753), + [sym_integer_literal] = ACTIONS(1755), + [aux_sym_string_literal_token1] = ACTIONS(1755), + [sym_char_literal] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1753), + [anon_sym_false] = ACTIONS(1753), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_crate] = ACTIONS(1753), + [sym_metavariable] = ACTIONS(1755), + [sym__raw_string_literal_start] = ACTIONS(1755), + [sym_float_literal] = ACTIONS(1755), }, [STATE(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u128] = ACTIONS(1511), - [anon_sym_i128] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_str] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_CARET_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym__] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_gen] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_ref] = ACTIONS(1511), - [sym_mutable_specifier] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1509), - [aux_sym_string_literal_token1] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym__raw_string_literal_start] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_u8] = ACTIONS(1465), + [anon_sym_i8] = ACTIONS(1465), + [anon_sym_u16] = ACTIONS(1465), + [anon_sym_i16] = ACTIONS(1465), + [anon_sym_u32] = ACTIONS(1465), + [anon_sym_i32] = ACTIONS(1465), + [anon_sym_u64] = ACTIONS(1465), + [anon_sym_i64] = ACTIONS(1465), + [anon_sym_u128] = ACTIONS(1465), + [anon_sym_i128] = ACTIONS(1465), + [anon_sym_isize] = ACTIONS(1465), + [anon_sym_usize] = ACTIONS(1465), + [anon_sym_f32] = ACTIONS(1465), + [anon_sym_f64] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_str] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1463), + [anon_sym_DASH_EQ] = ACTIONS(1463), + [anon_sym_STAR_EQ] = ACTIONS(1463), + [anon_sym_SLASH_EQ] = ACTIONS(1463), + [anon_sym_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_CARET_EQ] = ACTIONS(1463), + [anon_sym_AMP_EQ] = ACTIONS(1463), + [anon_sym_PIPE_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_GT_EQ] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym__] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_gen] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_ref] = ACTIONS(1465), + [sym_mutable_specifier] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1463), + [aux_sym_string_literal_token1] = ACTIONS(1463), + [sym_char_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_crate] = ACTIONS(1465), + [sym_metavariable] = ACTIONS(1463), + [sym__raw_string_literal_start] = ACTIONS(1463), + [sym_float_literal] = ACTIONS(1463), }, [STATE(481)] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_CARET_EQ] = ACTIONS(1449), - [anon_sym_AMP_EQ] = ACTIONS(1449), - [anon_sym_PIPE_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_GT_EQ] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_ref] = ACTIONS(1451), - [sym_mutable_specifier] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), - }, - [STATE(482)] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u128] = ACTIONS(1467), - [anon_sym_i128] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_str] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_PIPE_PIPE] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym__] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_COLON_COLON] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_default] = ACTIONS(1467), - [anon_sym_gen] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1467), - [anon_sym_ref] = ACTIONS(1467), - [sym_mutable_specifier] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1465), - [aux_sym_string_literal_token1] = ACTIONS(1465), - [sym_char_literal] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1467), - [sym_super] = ACTIONS(1467), - [sym_crate] = ACTIONS(1467), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1465), - [sym_float_literal] = ACTIONS(1465), - }, - [STATE(483)] = { - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [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(484)] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_gen] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_ref] = ACTIONS(1784), - [sym_mutable_specifier] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), - }, - [STATE(485)] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), [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_u8] = ACTIONS(1757), + [anon_sym_i8] = ACTIONS(1757), + [anon_sym_u16] = ACTIONS(1757), + [anon_sym_i16] = ACTIONS(1757), + [anon_sym_u32] = ACTIONS(1757), + [anon_sym_i32] = ACTIONS(1757), + [anon_sym_u64] = ACTIONS(1757), + [anon_sym_i64] = ACTIONS(1757), + [anon_sym_u128] = ACTIONS(1757), + [anon_sym_i128] = ACTIONS(1757), + [anon_sym_isize] = ACTIONS(1757), + [anon_sym_usize] = ACTIONS(1757), + [anon_sym_f32] = ACTIONS(1757), + [anon_sym_f64] = ACTIONS(1757), + [anon_sym_bool] = ACTIONS(1757), + [anon_sym_str] = ACTIONS(1757), + [anon_sym_char] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), [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] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), [anon_sym_AMP_AMP] = ACTIONS(1457), [anon_sym_PIPE_PIPE] = ACTIONS(1457), [anon_sym_LT_LT] = ACTIONS(1459), @@ -70710,124 +70614,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(1457), [anon_sym_BANG_EQ] = ACTIONS(1457), [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1757), [anon_sym_GT_EQ] = ACTIONS(1457), [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1459), + [anon_sym__] = ACTIONS(1757), [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1757), [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_gen] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1459), - [sym_mutable_specifier] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym__raw_string_literal_start] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), - }, - [STATE(486)] = { - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_PLUS_EQ] = ACTIONS(1453), - [anon_sym_DASH_EQ] = ACTIONS(1453), - [anon_sym_STAR_EQ] = ACTIONS(1453), - [anon_sym_SLASH_EQ] = ACTIONS(1453), - [anon_sym_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_CARET_EQ] = ACTIONS(1453), - [anon_sym_AMP_EQ] = ACTIONS(1453), - [anon_sym_PIPE_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_EQ] = ACTIONS(1453), - [anon_sym_GT_GT_EQ] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym__] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_ref] = ACTIONS(1455), - [sym_mutable_specifier] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_gen] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1757), + [sym_mutable_specifier] = ACTIONS(1757), + [sym_integer_literal] = ACTIONS(1759), + [aux_sym_string_literal_token1] = ACTIONS(1759), + [sym_char_literal] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1757), + [sym_super] = ACTIONS(1757), + [sym_crate] = ACTIONS(1757), + [sym_metavariable] = ACTIONS(1759), + [sym__raw_string_literal_start] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), }, - [STATE(487)] = { - [sym_line_comment] = STATE(487), - [sym_block_comment] = STATE(487), + [STATE(482)] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), [sym_identifier] = ACTIONS(1503), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1501), @@ -70908,9 +70729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1501), [sym_float_literal] = ACTIONS(1501), }, - [STATE(488)] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), + [STATE(483)] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), [sym_identifier] = ACTIONS(1491), [anon_sym_LPAREN] = ACTIONS(1489), [anon_sym_LBRACK] = ACTIONS(1489), @@ -70991,9 +70812,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1489), [sym_float_literal] = ACTIONS(1489), }, - [STATE(489)] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), + [STATE(484)] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_QMARK] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1493), + [anon_sym_DASH_EQ] = ACTIONS(1493), + [anon_sym_STAR_EQ] = ACTIONS(1493), + [anon_sym_SLASH_EQ] = ACTIONS(1493), + [anon_sym_PERCENT_EQ] = ACTIONS(1493), + [anon_sym_CARET_EQ] = ACTIONS(1493), + [anon_sym_AMP_EQ] = ACTIONS(1493), + [anon_sym_PIPE_EQ] = ACTIONS(1493), + [anon_sym_LT_LT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym__] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_gen] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1495), + [sym_mutable_specifier] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym__raw_string_literal_start] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), + }, + [STATE(485)] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1477), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_ref] = ACTIONS(1477), + [sym_mutable_specifier] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), + }, + [STATE(486)] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [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(1515), [anon_sym_LPAREN] = ACTIONS(1513), [anon_sym_LBRACK] = ACTIONS(1513), @@ -71074,825 +71144,1250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1513), [sym_float_literal] = ACTIONS(1513), }, - [STATE(490)] = { - [sym_line_comment] = STATE(490), - [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1479), - [anon_sym_i8] = ACTIONS(1479), - [anon_sym_u16] = ACTIONS(1479), - [anon_sym_i16] = ACTIONS(1479), - [anon_sym_u32] = ACTIONS(1479), - [anon_sym_i32] = ACTIONS(1479), - [anon_sym_u64] = ACTIONS(1479), - [anon_sym_i64] = ACTIONS(1479), - [anon_sym_u128] = ACTIONS(1479), - [anon_sym_i128] = ACTIONS(1479), - [anon_sym_isize] = ACTIONS(1479), - [anon_sym_usize] = ACTIONS(1479), - [anon_sym_f32] = ACTIONS(1479), - [anon_sym_f64] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_str] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1479), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_gen] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_ref] = ACTIONS(1479), - [sym_mutable_specifier] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [aux_sym_string_literal_token1] = ACTIONS(1477), - [sym_char_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym__raw_string_literal_start] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), - }, - [STATE(491)] = { - [sym_line_comment] = STATE(491), - [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(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(488)] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [sym_identifier] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym__] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1529), + [sym_mutable_specifier] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, - [STATE(492)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(3068), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2692), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(492), + [STATE(489)] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [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(490)] = { + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [sym_identifier] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PERCENT_EQ] = ACTIONS(1517), + [anon_sym_CARET_EQ] = ACTIONS(1517), + [anon_sym_AMP_EQ] = ACTIONS(1517), + [anon_sym_PIPE_EQ] = ACTIONS(1517), + [anon_sym_LT_LT_EQ] = ACTIONS(1517), + [anon_sym_GT_GT_EQ] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1517), + [anon_sym_BANG_EQ] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_GT_EQ] = ACTIONS(1517), + [anon_sym_LT_EQ] = ACTIONS(1517), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_gen] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_ref] = ACTIONS(1519), + [sym_mutable_specifier] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym__raw_string_literal_start] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), + }, + [STATE(491)] = { + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [sym_identifier] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_EQ] = ACTIONS(1521), + [anon_sym__] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_gen] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1523), + [sym_mutable_specifier] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), + }, + [STATE(492)] = { + [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1547), + [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(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym__] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_gen] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1549), + [sym_mutable_specifier] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1547), + [aux_sym_string_literal_token1] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_crate] = ACTIONS(1549), + [sym_metavariable] = ACTIONS(1547), + [sym__raw_string_literal_start] = ACTIONS(1547), + [sym_float_literal] = ACTIONS(1547), }, [STATE(493)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(2884), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2847), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym__] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_gen] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_ref] = ACTIONS(1553), + [sym_mutable_specifier] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1551), + [aux_sym_string_literal_token1] = ACTIONS(1551), + [sym_char_literal] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_crate] = ACTIONS(1553), + [sym_metavariable] = ACTIONS(1551), + [sym__raw_string_literal_start] = ACTIONS(1551), + [sym_float_literal] = ACTIONS(1551), }, [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(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_QMARK] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1497), + [anon_sym_DASH_EQ] = ACTIONS(1497), + [anon_sym_STAR_EQ] = ACTIONS(1497), + [anon_sym_SLASH_EQ] = ACTIONS(1497), + [anon_sym_PERCENT_EQ] = ACTIONS(1497), + [anon_sym_CARET_EQ] = ACTIONS(1497), + [anon_sym_AMP_EQ] = ACTIONS(1497), + [anon_sym_PIPE_EQ] = ACTIONS(1497), + [anon_sym_LT_LT_EQ] = ACTIONS(1497), + [anon_sym_GT_GT_EQ] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1497), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_ref] = ACTIONS(1499), + [sym_mutable_specifier] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), }, [STATE(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_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(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(497)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_arm] = STATE(1146), + [sym_match_pattern] = STATE(3642), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [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), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [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), + [aux_sym_match_block_repeat1] = STATE(497), + [aux_sym_match_arm_repeat1] = STATE(644), + [sym_identifier] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_u8] = ACTIONS(1770), + [anon_sym_i8] = ACTIONS(1770), + [anon_sym_u16] = ACTIONS(1770), + [anon_sym_i16] = ACTIONS(1770), + [anon_sym_u32] = ACTIONS(1770), + [anon_sym_i32] = ACTIONS(1770), + [anon_sym_u64] = ACTIONS(1770), + [anon_sym_i64] = ACTIONS(1770), + [anon_sym_u128] = ACTIONS(1770), + [anon_sym_i128] = ACTIONS(1770), + [anon_sym_isize] = ACTIONS(1770), + [anon_sym_usize] = ACTIONS(1770), + [anon_sym_f32] = ACTIONS(1770), + [anon_sym_f64] = ACTIONS(1770), + [anon_sym_bool] = ACTIONS(1770), + [anon_sym_str] = ACTIONS(1770), + [anon_sym_char] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym__] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1791), + [anon_sym_COLON_COLON] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_gen] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_ref] = ACTIONS(1806), + [sym_mutable_specifier] = ACTIONS(1809), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1815), + [sym_char_literal] = ACTIONS(1812), + [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(1821), + [sym_super] = ACTIONS(1821), + [sym_crate] = ACTIONS(1821), + [sym_metavariable] = ACTIONS(1824), + [sym__raw_string_literal_start] = ACTIONS(1827), + [sym_float_literal] = ACTIONS(1812), }, [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(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), }, [STATE(499)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(500)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(501)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [STATE(502)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), + }, + [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), @@ -71971,9 +72466,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), @@ -72052,9 +72547,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), @@ -72133,11 +72628,11 @@ 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), - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), + [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), [anon_sym_macro_rules_BANG] = ACTIONS(1850), [anon_sym_LPAREN] = ACTIONS(1850), @@ -72214,9 +72709,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), @@ -72295,9 +72790,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), @@ -72376,9 +72871,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), @@ -72457,9 +72952,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), @@ -72538,9 +73033,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), @@ -72619,9 +73114,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), @@ -72700,9 +73195,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), @@ -72781,9 +73276,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), @@ -72862,9 +73357,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), @@ -72943,9 +73438,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), @@ -73024,9 +73519,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), @@ -73105,9 +73600,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), @@ -73186,9 +73681,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), @@ -73267,9 +73762,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), @@ -73348,9 +73843,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), @@ -73429,9 +73924,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), @@ -73510,9 +74005,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), @@ -73591,9 +74086,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), @@ -73672,9 +74167,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), @@ -73753,9 +74248,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), @@ -73834,9 +74329,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), @@ -73915,9 +74410,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), @@ -73996,9 +74491,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), @@ -74077,9 +74572,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), @@ -74158,2034 +74653,333 @@ 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), - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_gen] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [anon_sym_try] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym__raw_string_literal_start] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), - }, - [STATE(529)] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_gen] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [anon_sym_try] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym__raw_string_literal_start] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), - }, - [STATE(530)] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_macro_rules_BANG] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_u8] = ACTIONS(1960), - [anon_sym_i8] = ACTIONS(1960), - [anon_sym_u16] = ACTIONS(1960), - [anon_sym_i16] = ACTIONS(1960), - [anon_sym_u32] = ACTIONS(1960), - [anon_sym_i32] = ACTIONS(1960), - [anon_sym_u64] = ACTIONS(1960), - [anon_sym_i64] = ACTIONS(1960), - [anon_sym_u128] = ACTIONS(1960), - [anon_sym_i128] = ACTIONS(1960), - [anon_sym_isize] = ACTIONS(1960), - [anon_sym_usize] = ACTIONS(1960), - [anon_sym_f32] = ACTIONS(1960), - [anon_sym_f64] = ACTIONS(1960), - [anon_sym_bool] = ACTIONS(1960), - [anon_sym_str] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_fn] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_gen] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_impl] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_mod] = ACTIONS(1960), - [anon_sym_pub] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_trait] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_unsafe] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [sym_integer_literal] = ACTIONS(1958), - [aux_sym_string_literal_token1] = ACTIONS(1958), - [sym_char_literal] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym__raw_string_literal_start] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), - }, [STATE(531)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_gen] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym__raw_string_literal_start] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [aux_sym_declaration_list_repeat1] = STATE(531), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_u8] = ACTIONS(1961), + [anon_sym_i8] = ACTIONS(1961), + [anon_sym_u16] = ACTIONS(1961), + [anon_sym_i16] = ACTIONS(1961), + [anon_sym_u32] = ACTIONS(1961), + [anon_sym_i32] = ACTIONS(1961), + [anon_sym_u64] = ACTIONS(1961), + [anon_sym_i64] = ACTIONS(1961), + [anon_sym_u128] = ACTIONS(1961), + [anon_sym_i128] = ACTIONS(1961), + [anon_sym_isize] = ACTIONS(1961), + [anon_sym_usize] = ACTIONS(1961), + [anon_sym_f32] = ACTIONS(1961), + [anon_sym_f64] = ACTIONS(1961), + [anon_sym_bool] = ACTIONS(1961), + [anon_sym_str] = ACTIONS(1961), + [anon_sym_char] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1985), + [anon_sym_gen] = ACTIONS(1988), + [anon_sym_impl] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1997), + [anon_sym_pub] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2006), + [anon_sym_trait] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2027), + [sym_super] = ACTIONS(2027), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2033), }, [STATE(532)] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_gen] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym__raw_string_literal_start] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_macro_rules_BANG] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_u8] = ACTIONS(2038), + [anon_sym_i8] = ACTIONS(2038), + [anon_sym_u16] = ACTIONS(2038), + [anon_sym_i16] = ACTIONS(2038), + [anon_sym_u32] = ACTIONS(2038), + [anon_sym_i32] = ACTIONS(2038), + [anon_sym_u64] = ACTIONS(2038), + [anon_sym_i64] = ACTIONS(2038), + [anon_sym_u128] = ACTIONS(2038), + [anon_sym_i128] = ACTIONS(2038), + [anon_sym_isize] = ACTIONS(2038), + [anon_sym_usize] = ACTIONS(2038), + [anon_sym_f32] = ACTIONS(2038), + [anon_sym_f64] = ACTIONS(2038), + [anon_sym_bool] = ACTIONS(2038), + [anon_sym_str] = ACTIONS(2038), + [anon_sym_char] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_fn] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_gen] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_impl] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_mod] = ACTIONS(2038), + [anon_sym_pub] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_trait] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_unsafe] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_move] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2036), + [aux_sym_string_literal_token1] = ACTIONS(2036), + [sym_char_literal] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2036), + [sym__raw_string_literal_start] = ACTIONS(2036), + [sym_float_literal] = ACTIONS(2036), }, [STATE(533)] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_gen] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym__raw_string_literal_start] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_macro_rules_BANG] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_u8] = ACTIONS(2042), + [anon_sym_i8] = ACTIONS(2042), + [anon_sym_u16] = ACTIONS(2042), + [anon_sym_i16] = ACTIONS(2042), + [anon_sym_u32] = ACTIONS(2042), + [anon_sym_i32] = ACTIONS(2042), + [anon_sym_u64] = ACTIONS(2042), + [anon_sym_i64] = ACTIONS(2042), + [anon_sym_u128] = ACTIONS(2042), + [anon_sym_i128] = ACTIONS(2042), + [anon_sym_isize] = ACTIONS(2042), + [anon_sym_usize] = ACTIONS(2042), + [anon_sym_f32] = ACTIONS(2042), + [anon_sym_f64] = ACTIONS(2042), + [anon_sym_bool] = ACTIONS(2042), + [anon_sym_str] = ACTIONS(2042), + [anon_sym_char] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_DOT_DOT] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_fn] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_gen] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_impl] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_mod] = ACTIONS(2042), + [anon_sym_pub] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_struct] = ACTIONS(2042), + [anon_sym_trait] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_unsafe] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_yield] = ACTIONS(2042), + [anon_sym_move] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [sym_integer_literal] = ACTIONS(2040), + [aux_sym_string_literal_token1] = ACTIONS(2040), + [sym_char_literal] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), + [sym_metavariable] = ACTIONS(2040), + [sym__raw_string_literal_start] = ACTIONS(2040), + [sym_float_literal] = ACTIONS(2040), }, [STATE(534)] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_gen] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym__raw_string_literal_start] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_macro_rules_BANG] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_u8] = ACTIONS(2046), + [anon_sym_i8] = ACTIONS(2046), + [anon_sym_u16] = ACTIONS(2046), + [anon_sym_i16] = ACTIONS(2046), + [anon_sym_u32] = ACTIONS(2046), + [anon_sym_i32] = ACTIONS(2046), + [anon_sym_u64] = ACTIONS(2046), + [anon_sym_i64] = ACTIONS(2046), + [anon_sym_u128] = ACTIONS(2046), + [anon_sym_i128] = ACTIONS(2046), + [anon_sym_isize] = ACTIONS(2046), + [anon_sym_usize] = ACTIONS(2046), + [anon_sym_f32] = ACTIONS(2046), + [anon_sym_f64] = ACTIONS(2046), + [anon_sym_bool] = ACTIONS(2046), + [anon_sym_str] = ACTIONS(2046), + [anon_sym_char] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_DOT_DOT] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_fn] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_gen] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_impl] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_mod] = ACTIONS(2046), + [anon_sym_pub] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_trait] = ACTIONS(2046), + [anon_sym_type] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_unsafe] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_yield] = ACTIONS(2046), + [anon_sym_move] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [sym_integer_literal] = ACTIONS(2044), + [aux_sym_string_literal_token1] = ACTIONS(2044), + [sym_char_literal] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), + [sym_metavariable] = ACTIONS(2044), + [sym__raw_string_literal_start] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2044), }, [STATE(535)] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_gen] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [anon_sym_try] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym__raw_string_literal_start] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), - }, - [STATE(536)] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_gen] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym__raw_string_literal_start] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), - }, - [STATE(537)] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_gen] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym__raw_string_literal_start] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), - }, - [STATE(538)] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_gen] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym__raw_string_literal_start] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), - }, - [STATE(539)] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_gen] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym__raw_string_literal_start] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), - }, - [STATE(540)] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_gen] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym__raw_string_literal_start] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), - }, - [STATE(541)] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_gen] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym__raw_string_literal_start] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), - }, - [STATE(542)] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_gen] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym__raw_string_literal_start] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), - }, - [STATE(543)] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_gen] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym__raw_string_literal_start] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), - }, - [STATE(544)] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_gen] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym__raw_string_literal_start] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - }, - [STATE(545)] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_gen] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym__raw_string_literal_start] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), - }, - [STATE(546)] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_gen] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym__raw_string_literal_start] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), - }, - [STATE(547)] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_gen] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym__raw_string_literal_start] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), - }, - [STATE(548)] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_gen] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym__raw_string_literal_start] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - }, - [STATE(549)] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_macro_rules_BANG] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_gen] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2034), - [aux_sym_string_literal_token1] = ACTIONS(2034), - [sym_char_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym__raw_string_literal_start] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), - }, - [STATE(550)] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_macro_rules_BANG] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_gen] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2038), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym__raw_string_literal_start] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), - }, - [STATE(551)] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_macro_rules_BANG] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_gen] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_move] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [aux_sym_string_literal_token1] = ACTIONS(2042), - [sym_char_literal] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2042), - [sym__raw_string_literal_start] = ACTIONS(2042), - [sym_float_literal] = ACTIONS(2042), - }, - [STATE(552)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(3391), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2947), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(553)] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), [ts_builtin_sym_end] = ACTIONS(2048), [sym_identifier] = ACTIONS(2050), [anon_sym_SEMI] = ACTIONS(2048), @@ -76264,9 +75058,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2048), [sym_float_literal] = ACTIONS(2048), }, - [STATE(554)] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(2052), [sym_identifier] = ACTIONS(2054), [anon_sym_SEMI] = ACTIONS(2052), @@ -76345,9 +75139,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2052), [sym_float_literal] = ACTIONS(2052), }, - [STATE(555)] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(2056), [sym_identifier] = ACTIONS(2058), [anon_sym_SEMI] = ACTIONS(2056), @@ -76426,9 +75220,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2056), [sym_float_literal] = ACTIONS(2056), }, - [STATE(556)] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(2060), [sym_identifier] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2060), @@ -76507,9 +75301,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2060), [sym_float_literal] = ACTIONS(2060), }, - [STATE(557)] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(2064), [sym_identifier] = ACTIONS(2066), [anon_sym_SEMI] = ACTIONS(2064), @@ -76588,9 +75382,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2064), [sym_float_literal] = ACTIONS(2064), }, - [STATE(558)] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(2068), [sym_identifier] = ACTIONS(2070), [anon_sym_SEMI] = ACTIONS(2068), @@ -76669,9 +75463,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2068), [sym_float_literal] = ACTIONS(2068), }, - [STATE(559)] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(2072), [sym_identifier] = ACTIONS(2074), [anon_sym_SEMI] = ACTIONS(2072), @@ -76750,9 +75544,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2072), [sym_float_literal] = ACTIONS(2072), }, - [STATE(560)] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(2076), [sym_identifier] = ACTIONS(2078), [anon_sym_SEMI] = ACTIONS(2076), @@ -76831,9 +75625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2076), [sym_float_literal] = ACTIONS(2076), }, - [STATE(561)] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [STATE(543)] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(2080), [sym_identifier] = ACTIONS(2082), [anon_sym_SEMI] = ACTIONS(2080), @@ -76912,9 +75706,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2080), [sym_float_literal] = ACTIONS(2080), }, - [STATE(562)] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [STATE(544)] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(2084), [sym_identifier] = ACTIONS(2086), [anon_sym_SEMI] = ACTIONS(2084), @@ -76993,1062 +75787,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2084), [sym_float_literal] = ACTIONS(2084), }, - [STATE(563)] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2088), - [sym_identifier] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_macro_rules_BANG] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_u8] = ACTIONS(2090), - [anon_sym_i8] = ACTIONS(2090), - [anon_sym_u16] = ACTIONS(2090), - [anon_sym_i16] = ACTIONS(2090), - [anon_sym_u32] = ACTIONS(2090), - [anon_sym_i32] = ACTIONS(2090), - [anon_sym_u64] = ACTIONS(2090), - [anon_sym_i64] = ACTIONS(2090), - [anon_sym_u128] = ACTIONS(2090), - [anon_sym_i128] = ACTIONS(2090), - [anon_sym_isize] = ACTIONS(2090), - [anon_sym_usize] = ACTIONS(2090), - [anon_sym_f32] = ACTIONS(2090), - [anon_sym_f64] = ACTIONS(2090), - [anon_sym_bool] = ACTIONS(2090), - [anon_sym_str] = ACTIONS(2090), - [anon_sym_char] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_DOT_DOT] = ACTIONS(2088), - [anon_sym_COLON_COLON] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(2088), - [anon_sym_SQUOTE] = ACTIONS(2090), - [anon_sym_async] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_fn] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_gen] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_impl] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_mod] = ACTIONS(2090), - [anon_sym_pub] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_trait] = ACTIONS(2090), - [anon_sym_type] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [anon_sym_unsafe] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_yield] = ACTIONS(2090), - [anon_sym_move] = ACTIONS(2090), - [anon_sym_try] = ACTIONS(2090), - [sym_integer_literal] = ACTIONS(2088), - [aux_sym_string_literal_token1] = ACTIONS(2088), - [sym_char_literal] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2090), - [anon_sym_false] = ACTIONS(2090), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2090), - [sym_super] = ACTIONS(2090), - [sym_crate] = ACTIONS(2090), - [sym_metavariable] = ACTIONS(2088), - [sym__raw_string_literal_start] = ACTIONS(2088), - [sym_float_literal] = ACTIONS(2088), - }, - [STATE(564)] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), + [STATE(545)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [aux_sym_declaration_list_repeat1] = STATE(531), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2090), [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_u8] = ACTIONS(2094), - [anon_sym_i8] = ACTIONS(2094), - [anon_sym_u16] = ACTIONS(2094), - [anon_sym_i16] = ACTIONS(2094), - [anon_sym_u32] = ACTIONS(2094), - [anon_sym_i32] = ACTIONS(2094), - [anon_sym_u64] = ACTIONS(2094), - [anon_sym_i64] = ACTIONS(2094), - [anon_sym_u128] = ACTIONS(2094), - [anon_sym_i128] = ACTIONS(2094), - [anon_sym_isize] = ACTIONS(2094), - [anon_sym_usize] = ACTIONS(2094), - [anon_sym_f32] = ACTIONS(2094), - [anon_sym_f64] = ACTIONS(2094), - [anon_sym_bool] = ACTIONS(2094), - [anon_sym_str] = ACTIONS(2094), - [anon_sym_char] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_DOT_DOT] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(2094), - [anon_sym_async] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_fn] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_gen] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_impl] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_loop] = ACTIONS(2094), - [anon_sym_match] = ACTIONS(2094), - [anon_sym_mod] = ACTIONS(2094), - [anon_sym_pub] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_trait] = ACTIONS(2094), - [anon_sym_type] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_unsafe] = ACTIONS(2094), - [anon_sym_use] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_yield] = ACTIONS(2094), - [anon_sym_move] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2094), - [sym_integer_literal] = ACTIONS(2092), - [aux_sym_string_literal_token1] = ACTIONS(2092), - [sym_char_literal] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(2094), - [anon_sym_false] = ACTIONS(2094), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_crate] = ACTIONS(2094), - [sym_metavariable] = ACTIONS(2092), - [sym__raw_string_literal_start] = ACTIONS(2092), - [sym_float_literal] = ACTIONS(2092), - }, - [STATE(565)] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_identifier] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_macro_rules_BANG] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_u8] = ACTIONS(2098), - [anon_sym_i8] = ACTIONS(2098), - [anon_sym_u16] = ACTIONS(2098), - [anon_sym_i16] = ACTIONS(2098), - [anon_sym_u32] = ACTIONS(2098), - [anon_sym_i32] = ACTIONS(2098), - [anon_sym_u64] = ACTIONS(2098), - [anon_sym_i64] = ACTIONS(2098), - [anon_sym_u128] = ACTIONS(2098), - [anon_sym_i128] = ACTIONS(2098), - [anon_sym_isize] = ACTIONS(2098), - [anon_sym_usize] = ACTIONS(2098), - [anon_sym_f32] = ACTIONS(2098), - [anon_sym_f64] = ACTIONS(2098), - [anon_sym_bool] = ACTIONS(2098), - [anon_sym_str] = ACTIONS(2098), - [anon_sym_char] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2098), - [anon_sym_async] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_fn] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_gen] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_impl] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_mod] = ACTIONS(2098), - [anon_sym_pub] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(2098), - [anon_sym_trait] = ACTIONS(2098), - [anon_sym_type] = ACTIONS(2098), - [anon_sym_union] = ACTIONS(2098), - [anon_sym_unsafe] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_yield] = ACTIONS(2098), - [anon_sym_move] = ACTIONS(2098), - [anon_sym_try] = ACTIONS(2098), - [sym_integer_literal] = ACTIONS(2096), - [aux_sym_string_literal_token1] = ACTIONS(2096), - [sym_char_literal] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2098), - [anon_sym_false] = ACTIONS(2098), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_crate] = ACTIONS(2098), - [sym_metavariable] = ACTIONS(2096), - [sym__raw_string_literal_start] = ACTIONS(2096), - [sym_float_literal] = ACTIONS(2096), - }, - [STATE(566)] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_identifier] = ACTIONS(2102), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_macro_rules_BANG] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_u8] = ACTIONS(2102), - [anon_sym_i8] = ACTIONS(2102), - [anon_sym_u16] = ACTIONS(2102), - [anon_sym_i16] = ACTIONS(2102), - [anon_sym_u32] = ACTIONS(2102), - [anon_sym_i32] = ACTIONS(2102), - [anon_sym_u64] = ACTIONS(2102), - [anon_sym_i64] = ACTIONS(2102), - [anon_sym_u128] = ACTIONS(2102), - [anon_sym_i128] = ACTIONS(2102), - [anon_sym_isize] = ACTIONS(2102), - [anon_sym_usize] = ACTIONS(2102), - [anon_sym_f32] = ACTIONS(2102), - [anon_sym_f64] = ACTIONS(2102), - [anon_sym_bool] = ACTIONS(2102), - [anon_sym_str] = ACTIONS(2102), - [anon_sym_char] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_DOT_DOT] = ACTIONS(2100), - [anon_sym_COLON_COLON] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(2102), - [anon_sym_async] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(1141), [anon_sym_const] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_gen] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_impl] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_loop] = ACTIONS(2102), - [anon_sym_match] = ACTIONS(2102), - [anon_sym_mod] = ACTIONS(2102), - [anon_sym_pub] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_struct] = ACTIONS(2102), - [anon_sym_trait] = ACTIONS(2102), - [anon_sym_type] = ACTIONS(2102), - [anon_sym_union] = ACTIONS(2102), - [anon_sym_unsafe] = ACTIONS(2102), - [anon_sym_use] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2102), - [anon_sym_move] = ACTIONS(2102), - [anon_sym_try] = ACTIONS(2102), - [sym_integer_literal] = ACTIONS(2100), - [aux_sym_string_literal_token1] = ACTIONS(2100), - [sym_char_literal] = ACTIONS(2100), - [anon_sym_true] = ACTIONS(2102), - [anon_sym_false] = ACTIONS(2102), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_crate] = ACTIONS(2102), - [sym_metavariable] = ACTIONS(2100), - [sym__raw_string_literal_start] = ACTIONS(2100), - [sym_float_literal] = ACTIONS(2100), - }, - [STATE(567)] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_macro_rules_BANG] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_u8] = ACTIONS(2106), - [anon_sym_i8] = ACTIONS(2106), - [anon_sym_u16] = ACTIONS(2106), - [anon_sym_i16] = ACTIONS(2106), - [anon_sym_u32] = ACTIONS(2106), - [anon_sym_i32] = ACTIONS(2106), - [anon_sym_u64] = ACTIONS(2106), - [anon_sym_i64] = ACTIONS(2106), - [anon_sym_u128] = ACTIONS(2106), - [anon_sym_i128] = ACTIONS(2106), - [anon_sym_isize] = ACTIONS(2106), - [anon_sym_usize] = ACTIONS(2106), - [anon_sym_f32] = ACTIONS(2106), - [anon_sym_f64] = ACTIONS(2106), - [anon_sym_bool] = ACTIONS(2106), - [anon_sym_str] = ACTIONS(2106), - [anon_sym_char] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2104), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_default] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2104), [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_gen] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_impl] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_loop] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_mod] = ACTIONS(2106), - [anon_sym_pub] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_trait] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2106), - [anon_sym_unsafe] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_yield] = ACTIONS(2106), - [anon_sym_move] = ACTIONS(2106), - [anon_sym_try] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2104), - [aux_sym_string_literal_token1] = ACTIONS(2104), - [sym_char_literal] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2106), - [sym_super] = ACTIONS(2106), - [sym_crate] = ACTIONS(2106), - [sym_metavariable] = ACTIONS(2104), - [sym__raw_string_literal_start] = ACTIONS(2104), - [sym_float_literal] = ACTIONS(2104), - }, - [STATE(568)] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_macro_rules_BANG] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_u8] = ACTIONS(2110), - [anon_sym_i8] = ACTIONS(2110), - [anon_sym_u16] = ACTIONS(2110), - [anon_sym_i16] = ACTIONS(2110), - [anon_sym_u32] = ACTIONS(2110), - [anon_sym_i32] = ACTIONS(2110), - [anon_sym_u64] = ACTIONS(2110), - [anon_sym_i64] = ACTIONS(2110), - [anon_sym_u128] = ACTIONS(2110), - [anon_sym_i128] = ACTIONS(2110), - [anon_sym_isize] = ACTIONS(2110), - [anon_sym_usize] = ACTIONS(2110), - [anon_sym_f32] = ACTIONS(2110), - [anon_sym_f64] = ACTIONS(2110), - [anon_sym_bool] = ACTIONS(2110), - [anon_sym_str] = ACTIONS(2110), - [anon_sym_char] = ACTIONS(2110), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_DOT_DOT] = ACTIONS(2108), - [anon_sym_COLON_COLON] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_SQUOTE] = ACTIONS(2110), - [anon_sym_async] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_default] = ACTIONS(2110), - [anon_sym_enum] = ACTIONS(2110), - [anon_sym_fn] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), + [anon_sym_fn] = ACTIONS(2108), [anon_sym_gen] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2110), - [anon_sym_let] = ACTIONS(2110), - [anon_sym_loop] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_mod] = ACTIONS(2110), - [anon_sym_pub] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_static] = ACTIONS(2110), - [anon_sym_struct] = ACTIONS(2110), - [anon_sym_trait] = ACTIONS(2110), - [anon_sym_type] = ACTIONS(2110), - [anon_sym_union] = ACTIONS(2110), - [anon_sym_unsafe] = ACTIONS(2110), - [anon_sym_use] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym_yield] = ACTIONS(2110), - [anon_sym_move] = ACTIONS(2110), - [anon_sym_try] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2108), - [aux_sym_string_literal_token1] = ACTIONS(2108), - [sym_char_literal] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2110), - [sym_super] = ACTIONS(2110), - [sym_crate] = ACTIONS(2110), - [sym_metavariable] = ACTIONS(2108), - [sym__raw_string_literal_start] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - }, - [STATE(569)] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_macro_rules_BANG] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_u8] = ACTIONS(2114), - [anon_sym_i8] = ACTIONS(2114), - [anon_sym_u16] = ACTIONS(2114), - [anon_sym_i16] = ACTIONS(2114), - [anon_sym_u32] = ACTIONS(2114), - [anon_sym_i32] = ACTIONS(2114), - [anon_sym_u64] = ACTIONS(2114), - [anon_sym_i64] = ACTIONS(2114), - [anon_sym_u128] = ACTIONS(2114), - [anon_sym_i128] = ACTIONS(2114), - [anon_sym_isize] = ACTIONS(2114), - [anon_sym_usize] = ACTIONS(2114), - [anon_sym_f32] = ACTIONS(2114), - [anon_sym_f64] = ACTIONS(2114), - [anon_sym_bool] = ACTIONS(2114), - [anon_sym_str] = ACTIONS(2114), - [anon_sym_char] = ACTIONS(2114), - [anon_sym_DASH] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_DOT_DOT] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_SQUOTE] = ACTIONS(2114), - [anon_sym_async] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_fn] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_gen] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_impl] = ACTIONS(2114), + [anon_sym_impl] = ACTIONS(2112), [anon_sym_let] = ACTIONS(2114), - [anon_sym_loop] = ACTIONS(2114), - [anon_sym_match] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2114), - [anon_sym_pub] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_trait] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_unsafe] = ACTIONS(2114), - [anon_sym_use] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym_yield] = ACTIONS(2114), - [anon_sym_move] = ACTIONS(2114), - [anon_sym_try] = ACTIONS(2114), - [sym_integer_literal] = ACTIONS(2112), - [aux_sym_string_literal_token1] = ACTIONS(2112), - [sym_char_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_crate] = ACTIONS(2114), - [sym_metavariable] = ACTIONS(2112), - [sym__raw_string_literal_start] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - }, - [STATE(570)] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_macro_rules_BANG] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_u8] = ACTIONS(2118), - [anon_sym_i8] = ACTIONS(2118), - [anon_sym_u16] = ACTIONS(2118), - [anon_sym_i16] = ACTIONS(2118), - [anon_sym_u32] = ACTIONS(2118), - [anon_sym_i32] = ACTIONS(2118), - [anon_sym_u64] = ACTIONS(2118), - [anon_sym_i64] = ACTIONS(2118), - [anon_sym_u128] = ACTIONS(2118), - [anon_sym_i128] = ACTIONS(2118), - [anon_sym_isize] = ACTIONS(2118), - [anon_sym_usize] = ACTIONS(2118), - [anon_sym_f32] = ACTIONS(2118), - [anon_sym_f64] = ACTIONS(2118), - [anon_sym_bool] = ACTIONS(2118), - [anon_sym_str] = ACTIONS(2118), - [anon_sym_char] = ACTIONS(2118), - [anon_sym_DASH] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_LT] = ACTIONS(2116), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym_POUND] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2118), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_fn] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_gen] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_impl] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_mod] = ACTIONS(2118), - [anon_sym_pub] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(69), [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2118), - [anon_sym_trait] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_union] = ACTIONS(2118), - [anon_sym_unsafe] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_yield] = ACTIONS(2118), - [anon_sym_move] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2118), - [sym_integer_literal] = ACTIONS(2116), - [aux_sym_string_literal_token1] = ACTIONS(2116), - [sym_char_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2118), - [sym_super] = ACTIONS(2118), - [sym_crate] = ACTIONS(2118), - [sym_metavariable] = ACTIONS(2116), - [sym__raw_string_literal_start] = ACTIONS(2116), - [sym_float_literal] = ACTIONS(2116), - }, - [STATE(571)] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_macro_rules_BANG] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_u8] = ACTIONS(2122), - [anon_sym_i8] = ACTIONS(2122), - [anon_sym_u16] = ACTIONS(2122), - [anon_sym_i16] = ACTIONS(2122), - [anon_sym_u32] = ACTIONS(2122), - [anon_sym_i32] = ACTIONS(2122), - [anon_sym_u64] = ACTIONS(2122), - [anon_sym_i64] = ACTIONS(2122), - [anon_sym_u128] = ACTIONS(2122), - [anon_sym_i128] = ACTIONS(2122), - [anon_sym_isize] = ACTIONS(2122), - [anon_sym_usize] = ACTIONS(2122), - [anon_sym_f32] = ACTIONS(2122), - [anon_sym_f64] = ACTIONS(2122), - [anon_sym_bool] = ACTIONS(2122), - [anon_sym_str] = ACTIONS(2122), - [anon_sym_char] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_COLON_COLON] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(2120), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_fn] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_gen] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_impl] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_mod] = ACTIONS(2122), - [anon_sym_pub] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2120), [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_unsafe] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_yield] = ACTIONS(2122), - [anon_sym_move] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [sym_integer_literal] = ACTIONS(2120), - [aux_sym_string_literal_token1] = ACTIONS(2120), - [sym_char_literal] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_crate] = ACTIONS(2122), - [sym_metavariable] = ACTIONS(2120), - [sym__raw_string_literal_start] = ACTIONS(2120), - [sym_float_literal] = ACTIONS(2120), - }, - [STATE(572)] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_macro_rules_BANG] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_u8] = ACTIONS(2126), - [anon_sym_i8] = ACTIONS(2126), - [anon_sym_u16] = ACTIONS(2126), - [anon_sym_i16] = ACTIONS(2126), - [anon_sym_u32] = ACTIONS(2126), - [anon_sym_i32] = ACTIONS(2126), - [anon_sym_u64] = ACTIONS(2126), - [anon_sym_i64] = ACTIONS(2126), - [anon_sym_u128] = ACTIONS(2126), - [anon_sym_i128] = ACTIONS(2126), - [anon_sym_isize] = ACTIONS(2126), - [anon_sym_usize] = ACTIONS(2126), - [anon_sym_f32] = ACTIONS(2126), - [anon_sym_f64] = ACTIONS(2126), - [anon_sym_bool] = ACTIONS(2126), - [anon_sym_str] = ACTIONS(2126), - [anon_sym_char] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_LT] = ACTIONS(2124), - [anon_sym_DOT_DOT] = ACTIONS(2124), - [anon_sym_COLON_COLON] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_fn] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_gen] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_impl] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_loop] = ACTIONS(2126), - [anon_sym_match] = ACTIONS(2126), - [anon_sym_mod] = ACTIONS(2126), - [anon_sym_pub] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_static] = ACTIONS(2126), - [anon_sym_struct] = ACTIONS(2126), - [anon_sym_trait] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2124), [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2126), - [anon_sym_use] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [anon_sym_move] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [sym_integer_literal] = ACTIONS(2124), - [aux_sym_string_literal_token1] = ACTIONS(2124), - [sym_char_literal] = ACTIONS(2124), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_crate] = ACTIONS(2126), - [sym_metavariable] = ACTIONS(2124), - [sym__raw_string_literal_start] = ACTIONS(2124), - [sym_float_literal] = ACTIONS(2124), - }, - [STATE(573)] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2130), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_macro_rules_BANG] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_u8] = ACTIONS(2130), - [anon_sym_i8] = ACTIONS(2130), - [anon_sym_u16] = ACTIONS(2130), - [anon_sym_i16] = ACTIONS(2130), - [anon_sym_u32] = ACTIONS(2130), - [anon_sym_i32] = ACTIONS(2130), - [anon_sym_u64] = ACTIONS(2130), - [anon_sym_i64] = ACTIONS(2130), - [anon_sym_u128] = ACTIONS(2130), - [anon_sym_i128] = ACTIONS(2130), - [anon_sym_isize] = ACTIONS(2130), - [anon_sym_usize] = ACTIONS(2130), - [anon_sym_f32] = ACTIONS(2130), - [anon_sym_f64] = ACTIONS(2130), - [anon_sym_bool] = ACTIONS(2130), - [anon_sym_str] = ACTIONS(2130), - [anon_sym_char] = ACTIONS(2130), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_LT] = ACTIONS(2128), - [anon_sym_DOT_DOT] = ACTIONS(2128), - [anon_sym_COLON_COLON] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2130), - [anon_sym_async] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_default] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_fn] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_gen] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_impl] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_mod] = ACTIONS(2130), - [anon_sym_pub] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(2130), - [anon_sym_trait] = ACTIONS(2130), - [anon_sym_type] = ACTIONS(2130), - [anon_sym_union] = ACTIONS(2130), - [anon_sym_unsafe] = ACTIONS(2130), + [anon_sym_unsafe] = ACTIONS(2128), [anon_sym_use] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_yield] = ACTIONS(2130), - [anon_sym_move] = ACTIONS(2130), - [anon_sym_try] = ACTIONS(2130), - [sym_integer_literal] = ACTIONS(2128), - [aux_sym_string_literal_token1] = ACTIONS(2128), - [sym_char_literal] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2130), - [anon_sym_false] = ACTIONS(2130), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2130), - [sym_super] = ACTIONS(2130), - [sym_crate] = ACTIONS(2130), - [sym_metavariable] = ACTIONS(2128), - [sym__raw_string_literal_start] = ACTIONS(2128), - [sym_float_literal] = ACTIONS(2128), - }, - [STATE(574)] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2132), - [sym_identifier] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_macro_rules_BANG] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_u8] = ACTIONS(2134), - [anon_sym_i8] = ACTIONS(2134), - [anon_sym_u16] = ACTIONS(2134), - [anon_sym_i16] = ACTIONS(2134), - [anon_sym_u32] = ACTIONS(2134), - [anon_sym_i32] = ACTIONS(2134), - [anon_sym_u64] = ACTIONS(2134), - [anon_sym_i64] = ACTIONS(2134), - [anon_sym_u128] = ACTIONS(2134), - [anon_sym_i128] = ACTIONS(2134), - [anon_sym_isize] = ACTIONS(2134), - [anon_sym_usize] = ACTIONS(2134), - [anon_sym_f32] = ACTIONS(2134), - [anon_sym_f64] = ACTIONS(2134), - [anon_sym_bool] = ACTIONS(2134), - [anon_sym_str] = ACTIONS(2134), - [anon_sym_char] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_DOT_DOT] = ACTIONS(2132), - [anon_sym_COLON_COLON] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_SQUOTE] = ACTIONS(2134), - [anon_sym_async] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_fn] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_gen] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_impl] = ACTIONS(2134), - [anon_sym_let] = ACTIONS(2134), - [anon_sym_loop] = ACTIONS(2134), - [anon_sym_match] = ACTIONS(2134), - [anon_sym_mod] = ACTIONS(2134), - [anon_sym_pub] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_trait] = ACTIONS(2134), - [anon_sym_type] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_unsafe] = ACTIONS(2134), - [anon_sym_use] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym_yield] = ACTIONS(2134), - [anon_sym_move] = ACTIONS(2134), - [anon_sym_try] = ACTIONS(2134), - [sym_integer_literal] = ACTIONS(2132), - [aux_sym_string_literal_token1] = ACTIONS(2132), - [sym_char_literal] = ACTIONS(2132), - [anon_sym_true] = ACTIONS(2134), - [anon_sym_false] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2132), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2134), [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2134), - [sym_metavariable] = ACTIONS(2132), - [sym__raw_string_literal_start] = ACTIONS(2132), - [sym_float_literal] = ACTIONS(2132), - }, - [STATE(575)] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_macro_rules_BANG] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_u8] = ACTIONS(2138), - [anon_sym_i8] = ACTIONS(2138), - [anon_sym_u16] = ACTIONS(2138), - [anon_sym_i16] = ACTIONS(2138), - [anon_sym_u32] = ACTIONS(2138), - [anon_sym_i32] = ACTIONS(2138), - [anon_sym_u64] = ACTIONS(2138), - [anon_sym_i64] = ACTIONS(2138), - [anon_sym_u128] = ACTIONS(2138), - [anon_sym_i128] = ACTIONS(2138), - [anon_sym_isize] = ACTIONS(2138), - [anon_sym_usize] = ACTIONS(2138), - [anon_sym_f32] = ACTIONS(2138), - [anon_sym_f64] = ACTIONS(2138), - [anon_sym_bool] = ACTIONS(2138), - [anon_sym_str] = ACTIONS(2138), - [anon_sym_char] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_DOT_DOT] = ACTIONS(2136), - [anon_sym_COLON_COLON] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_fn] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_gen] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_impl] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_loop] = ACTIONS(2138), - [anon_sym_match] = ACTIONS(2138), - [anon_sym_mod] = ACTIONS(2138), - [anon_sym_pub] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_trait] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_union] = ACTIONS(2138), - [anon_sym_unsafe] = ACTIONS(2138), - [anon_sym_use] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [anon_sym_move] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [sym_integer_literal] = ACTIONS(2136), - [aux_sym_string_literal_token1] = ACTIONS(2136), - [sym_char_literal] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2138), - [anon_sym_false] = ACTIONS(2138), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_crate] = ACTIONS(2138), - [sym_metavariable] = ACTIONS(2136), - [sym__raw_string_literal_start] = ACTIONS(2136), - [sym_float_literal] = ACTIONS(2136), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2138), }, - [STATE(576)] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [STATE(546)] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(2140), [sym_identifier] = ACTIONS(2142), [anon_sym_SEMI] = ACTIONS(2140), @@ -78127,9 +75949,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2140), [sym_float_literal] = ACTIONS(2140), }, - [STATE(577)] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [STATE(547)] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(2144), [sym_identifier] = ACTIONS(2146), [anon_sym_SEMI] = ACTIONS(2144), @@ -78208,9 +76030,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2144), [sym_float_literal] = ACTIONS(2144), }, - [STATE(578)] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [STATE(548)] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(2148), [sym_identifier] = ACTIONS(2150), [anon_sym_SEMI] = ACTIONS(2148), @@ -78289,9 +76111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2148), [sym_float_literal] = ACTIONS(2148), }, - [STATE(579)] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [STATE(549)] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(2152), [sym_identifier] = ACTIONS(2154), [anon_sym_SEMI] = ACTIONS(2152), @@ -78370,4869 +76192,7056 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2152), [sym_float_literal] = ACTIONS(2152), }, + [STATE(550)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [aux_sym_declaration_list_repeat1] = STATE(545), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2138), + }, + [STATE(551)] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_macro_rules_BANG] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_u8] = ACTIONS(2160), + [anon_sym_i8] = ACTIONS(2160), + [anon_sym_u16] = ACTIONS(2160), + [anon_sym_i16] = ACTIONS(2160), + [anon_sym_u32] = ACTIONS(2160), + [anon_sym_i32] = ACTIONS(2160), + [anon_sym_u64] = ACTIONS(2160), + [anon_sym_i64] = ACTIONS(2160), + [anon_sym_u128] = ACTIONS(2160), + [anon_sym_i128] = ACTIONS(2160), + [anon_sym_isize] = ACTIONS(2160), + [anon_sym_usize] = ACTIONS(2160), + [anon_sym_f32] = ACTIONS(2160), + [anon_sym_f64] = ACTIONS(2160), + [anon_sym_bool] = ACTIONS(2160), + [anon_sym_str] = ACTIONS(2160), + [anon_sym_char] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_DOT_DOT] = ACTIONS(2158), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_fn] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_gen] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_impl] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_mod] = ACTIONS(2160), + [anon_sym_pub] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_trait] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [anon_sym_unsafe] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_move] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [sym_integer_literal] = ACTIONS(2158), + [aux_sym_string_literal_token1] = ACTIONS(2158), + [sym_char_literal] = ACTIONS(2158), + [anon_sym_true] = ACTIONS(2160), + [anon_sym_false] = ACTIONS(2160), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_crate] = ACTIONS(2160), + [sym_metavariable] = ACTIONS(2158), + [sym__raw_string_literal_start] = ACTIONS(2158), + [sym_float_literal] = ACTIONS(2158), + }, + [STATE(552)] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), + [ts_builtin_sym_end] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_macro_rules_BANG] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_u8] = ACTIONS(2164), + [anon_sym_i8] = ACTIONS(2164), + [anon_sym_u16] = ACTIONS(2164), + [anon_sym_i16] = ACTIONS(2164), + [anon_sym_u32] = ACTIONS(2164), + [anon_sym_i32] = ACTIONS(2164), + [anon_sym_u64] = ACTIONS(2164), + [anon_sym_i64] = ACTIONS(2164), + [anon_sym_u128] = ACTIONS(2164), + [anon_sym_i128] = ACTIONS(2164), + [anon_sym_isize] = ACTIONS(2164), + [anon_sym_usize] = ACTIONS(2164), + [anon_sym_f32] = ACTIONS(2164), + [anon_sym_f64] = ACTIONS(2164), + [anon_sym_bool] = ACTIONS(2164), + [anon_sym_str] = ACTIONS(2164), + [anon_sym_char] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_DOT_DOT] = ACTIONS(2162), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [anon_sym_fn] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_gen] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_impl] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_mod] = ACTIONS(2164), + [anon_sym_pub] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_trait] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_unsafe] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_move] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [sym_integer_literal] = ACTIONS(2162), + [aux_sym_string_literal_token1] = ACTIONS(2162), + [sym_char_literal] = ACTIONS(2162), + [anon_sym_true] = ACTIONS(2164), + [anon_sym_false] = ACTIONS(2164), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_crate] = ACTIONS(2164), + [sym_metavariable] = ACTIONS(2162), + [sym__raw_string_literal_start] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + }, + [STATE(553)] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_macro_rules_BANG] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_u8] = ACTIONS(2168), + [anon_sym_i8] = ACTIONS(2168), + [anon_sym_u16] = ACTIONS(2168), + [anon_sym_i16] = ACTIONS(2168), + [anon_sym_u32] = ACTIONS(2168), + [anon_sym_i32] = ACTIONS(2168), + [anon_sym_u64] = ACTIONS(2168), + [anon_sym_i64] = ACTIONS(2168), + [anon_sym_u128] = ACTIONS(2168), + [anon_sym_i128] = ACTIONS(2168), + [anon_sym_isize] = ACTIONS(2168), + [anon_sym_usize] = ACTIONS(2168), + [anon_sym_f32] = ACTIONS(2168), + [anon_sym_f64] = ACTIONS(2168), + [anon_sym_bool] = ACTIONS(2168), + [anon_sym_str] = ACTIONS(2168), + [anon_sym_char] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(2166), + [anon_sym_COLON_COLON] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2168), + [anon_sym_async] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_default] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_gen] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_impl] = ACTIONS(2168), + [anon_sym_let] = ACTIONS(2168), + [anon_sym_loop] = ACTIONS(2168), + [anon_sym_match] = ACTIONS(2168), + [anon_sym_mod] = ACTIONS(2168), + [anon_sym_pub] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_trait] = ACTIONS(2168), + [anon_sym_type] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2168), + [anon_sym_unsafe] = ACTIONS(2168), + [anon_sym_use] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym_yield] = ACTIONS(2168), + [anon_sym_move] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [sym_integer_literal] = ACTIONS(2166), + [aux_sym_string_literal_token1] = ACTIONS(2166), + [sym_char_literal] = ACTIONS(2166), + [anon_sym_true] = ACTIONS(2168), + [anon_sym_false] = ACTIONS(2168), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2168), + [sym_super] = ACTIONS(2168), + [sym_crate] = ACTIONS(2168), + [sym_metavariable] = ACTIONS(2166), + [sym__raw_string_literal_start] = ACTIONS(2166), + [sym_float_literal] = ACTIONS(2166), + }, + [STATE(554)] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_macro_rules_BANG] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_u8] = ACTIONS(2172), + [anon_sym_i8] = ACTIONS(2172), + [anon_sym_u16] = ACTIONS(2172), + [anon_sym_i16] = ACTIONS(2172), + [anon_sym_u32] = ACTIONS(2172), + [anon_sym_i32] = ACTIONS(2172), + [anon_sym_u64] = ACTIONS(2172), + [anon_sym_i64] = ACTIONS(2172), + [anon_sym_u128] = ACTIONS(2172), + [anon_sym_i128] = ACTIONS(2172), + [anon_sym_isize] = ACTIONS(2172), + [anon_sym_usize] = ACTIONS(2172), + [anon_sym_f32] = ACTIONS(2172), + [anon_sym_f64] = ACTIONS(2172), + [anon_sym_bool] = ACTIONS(2172), + [anon_sym_str] = ACTIONS(2172), + [anon_sym_char] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_DOT_DOT] = ACTIONS(2170), + [anon_sym_COLON_COLON] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [anon_sym_fn] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_gen] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_impl] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_loop] = ACTIONS(2172), + [anon_sym_match] = ACTIONS(2172), + [anon_sym_mod] = ACTIONS(2172), + [anon_sym_pub] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_struct] = ACTIONS(2172), + [anon_sym_trait] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_unsafe] = ACTIONS(2172), + [anon_sym_use] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_extern] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_move] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [sym_integer_literal] = ACTIONS(2170), + [aux_sym_string_literal_token1] = ACTIONS(2170), + [sym_char_literal] = ACTIONS(2170), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_crate] = ACTIONS(2172), + [sym_metavariable] = ACTIONS(2170), + [sym__raw_string_literal_start] = ACTIONS(2170), + [sym_float_literal] = ACTIONS(2170), + }, + [STATE(555)] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [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(556)] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [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(557)] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [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(558)] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [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_SQUOTE] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [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(559)] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [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(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(560)] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), + [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_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(561)] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [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_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(562)] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [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(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(563)] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), + [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(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(564)] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), + [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(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(565)] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), + [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_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(566)] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), + [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(2220), + [sym_metavariable] = ACTIONS(2218), + [sym__raw_string_literal_start] = ACTIONS(2218), + [sym_float_literal] = ACTIONS(2218), + }, + [STATE(567)] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), + [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(568)] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), + [ts_builtin_sym_end] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_macro_rules_BANG] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2226), + [anon_sym_u8] = ACTIONS(2228), + [anon_sym_i8] = ACTIONS(2228), + [anon_sym_u16] = ACTIONS(2228), + [anon_sym_i16] = ACTIONS(2228), + [anon_sym_u32] = ACTIONS(2228), + [anon_sym_i32] = ACTIONS(2228), + [anon_sym_u64] = ACTIONS(2228), + [anon_sym_i64] = ACTIONS(2228), + [anon_sym_u128] = ACTIONS(2228), + [anon_sym_i128] = ACTIONS(2228), + [anon_sym_isize] = ACTIONS(2228), + [anon_sym_usize] = ACTIONS(2228), + [anon_sym_f32] = ACTIONS(2228), + [anon_sym_f64] = ACTIONS(2228), + [anon_sym_bool] = ACTIONS(2228), + [anon_sym_str] = ACTIONS(2228), + [anon_sym_char] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_COLON_COLON] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_async] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2228), + [anon_sym_enum] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_gen] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_impl] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_mod] = ACTIONS(2228), + [anon_sym_pub] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_trait] = ACTIONS(2228), + [anon_sym_type] = ACTIONS(2228), + [anon_sym_union] = ACTIONS(2228), + [anon_sym_unsafe] = ACTIONS(2228), + [anon_sym_use] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_extern] = ACTIONS(2228), + [anon_sym_yield] = ACTIONS(2228), + [anon_sym_move] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [sym_integer_literal] = ACTIONS(2226), + [aux_sym_string_literal_token1] = ACTIONS(2226), + [sym_char_literal] = ACTIONS(2226), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2228), + [sym_super] = ACTIONS(2228), + [sym_crate] = ACTIONS(2228), + [sym_metavariable] = ACTIONS(2226), + [sym__raw_string_literal_start] = ACTIONS(2226), + [sym_float_literal] = ACTIONS(2226), + }, + [STATE(569)] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_macro_rules_BANG] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_u8] = ACTIONS(2232), + [anon_sym_i8] = ACTIONS(2232), + [anon_sym_u16] = ACTIONS(2232), + [anon_sym_i16] = ACTIONS(2232), + [anon_sym_u32] = ACTIONS(2232), + [anon_sym_i32] = ACTIONS(2232), + [anon_sym_u64] = ACTIONS(2232), + [anon_sym_i64] = ACTIONS(2232), + [anon_sym_u128] = ACTIONS(2232), + [anon_sym_i128] = ACTIONS(2232), + [anon_sym_isize] = ACTIONS(2232), + [anon_sym_usize] = ACTIONS(2232), + [anon_sym_f32] = ACTIONS(2232), + [anon_sym_f64] = ACTIONS(2232), + [anon_sym_bool] = ACTIONS(2232), + [anon_sym_str] = ACTIONS(2232), + [anon_sym_char] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_COLON_COLON] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2232), + [anon_sym_async] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [anon_sym_fn] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_gen] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_impl] = ACTIONS(2232), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_loop] = ACTIONS(2232), + [anon_sym_match] = ACTIONS(2232), + [anon_sym_mod] = ACTIONS(2232), + [anon_sym_pub] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2232), + [anon_sym_trait] = ACTIONS(2232), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_union] = ACTIONS(2232), + [anon_sym_unsafe] = ACTIONS(2232), + [anon_sym_use] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_extern] = ACTIONS(2232), + [anon_sym_yield] = ACTIONS(2232), + [anon_sym_move] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [sym_integer_literal] = ACTIONS(2230), + [aux_sym_string_literal_token1] = ACTIONS(2230), + [sym_char_literal] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2232), + [sym_super] = ACTIONS(2232), + [sym_crate] = ACTIONS(2232), + [sym_metavariable] = ACTIONS(2230), + [sym__raw_string_literal_start] = ACTIONS(2230), + [sym_float_literal] = ACTIONS(2230), + }, + [STATE(570)] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_macro_rules_BANG] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_u8] = ACTIONS(2236), + [anon_sym_i8] = ACTIONS(2236), + [anon_sym_u16] = ACTIONS(2236), + [anon_sym_i16] = ACTIONS(2236), + [anon_sym_u32] = ACTIONS(2236), + [anon_sym_i32] = ACTIONS(2236), + [anon_sym_u64] = ACTIONS(2236), + [anon_sym_i64] = ACTIONS(2236), + [anon_sym_u128] = ACTIONS(2236), + [anon_sym_i128] = ACTIONS(2236), + [anon_sym_isize] = ACTIONS(2236), + [anon_sym_usize] = ACTIONS(2236), + [anon_sym_f32] = ACTIONS(2236), + [anon_sym_f64] = ACTIONS(2236), + [anon_sym_bool] = ACTIONS(2236), + [anon_sym_str] = ACTIONS(2236), + [anon_sym_char] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_DOT_DOT] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_fn] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_gen] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_impl] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_loop] = ACTIONS(2236), + [anon_sym_match] = ACTIONS(2236), + [anon_sym_mod] = ACTIONS(2236), + [anon_sym_pub] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_trait] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [anon_sym_unsafe] = ACTIONS(2236), + [anon_sym_use] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_move] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [sym_integer_literal] = ACTIONS(2234), + [aux_sym_string_literal_token1] = ACTIONS(2234), + [sym_char_literal] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2236), + [anon_sym_false] = ACTIONS(2236), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_crate] = ACTIONS(2236), + [sym_metavariable] = ACTIONS(2234), + [sym__raw_string_literal_start] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + }, + [STATE(571)] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [ts_builtin_sym_end] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_macro_rules_BANG] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_u8] = ACTIONS(2240), + [anon_sym_i8] = ACTIONS(2240), + [anon_sym_u16] = ACTIONS(2240), + [anon_sym_i16] = ACTIONS(2240), + [anon_sym_u32] = ACTIONS(2240), + [anon_sym_i32] = ACTIONS(2240), + [anon_sym_u64] = ACTIONS(2240), + [anon_sym_i64] = ACTIONS(2240), + [anon_sym_u128] = ACTIONS(2240), + [anon_sym_i128] = ACTIONS(2240), + [anon_sym_isize] = ACTIONS(2240), + [anon_sym_usize] = ACTIONS(2240), + [anon_sym_f32] = ACTIONS(2240), + [anon_sym_f64] = ACTIONS(2240), + [anon_sym_bool] = ACTIONS(2240), + [anon_sym_str] = ACTIONS(2240), + [anon_sym_char] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_DOT_DOT] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_POUND] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2240), + [anon_sym_async] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [anon_sym_fn] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_gen] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_impl] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_loop] = ACTIONS(2240), + [anon_sym_match] = ACTIONS(2240), + [anon_sym_mod] = ACTIONS(2240), + [anon_sym_pub] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_struct] = ACTIONS(2240), + [anon_sym_trait] = ACTIONS(2240), + [anon_sym_type] = ACTIONS(2240), + [anon_sym_union] = ACTIONS(2240), + [anon_sym_unsafe] = ACTIONS(2240), + [anon_sym_use] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym_yield] = ACTIONS(2240), + [anon_sym_move] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [sym_integer_literal] = ACTIONS(2238), + [aux_sym_string_literal_token1] = ACTIONS(2238), + [sym_char_literal] = ACTIONS(2238), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2240), + [sym_super] = ACTIONS(2240), + [sym_crate] = ACTIONS(2240), + [sym_metavariable] = ACTIONS(2238), + [sym__raw_string_literal_start] = ACTIONS(2238), + [sym_float_literal] = ACTIONS(2238), + }, + [STATE(572)] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [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(573)] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [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(574)] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), + [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(575)] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [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(576)] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [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(577)] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), + [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(578)] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), + [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(579)] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), + [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(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_macro_rules_BANG] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_u8] = ACTIONS(2158), - [anon_sym_i8] = ACTIONS(2158), - [anon_sym_u16] = ACTIONS(2158), - [anon_sym_i16] = ACTIONS(2158), - [anon_sym_u32] = ACTIONS(2158), - [anon_sym_i32] = ACTIONS(2158), - [anon_sym_u64] = ACTIONS(2158), - [anon_sym_i64] = ACTIONS(2158), - [anon_sym_u128] = ACTIONS(2158), - [anon_sym_i128] = ACTIONS(2158), - [anon_sym_isize] = ACTIONS(2158), - [anon_sym_usize] = ACTIONS(2158), - [anon_sym_f32] = ACTIONS(2158), - [anon_sym_f64] = ACTIONS(2158), - [anon_sym_bool] = ACTIONS(2158), - [anon_sym_str] = ACTIONS(2158), - [anon_sym_char] = ACTIONS(2158), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_DOT_DOT] = ACTIONS(2156), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym_async] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [anon_sym_fn] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_gen] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_impl] = ACTIONS(2158), - [anon_sym_let] = ACTIONS(2158), - [anon_sym_loop] = ACTIONS(2158), - [anon_sym_match] = ACTIONS(2158), - [anon_sym_mod] = ACTIONS(2158), - [anon_sym_pub] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2158), - [anon_sym_trait] = ACTIONS(2158), - [anon_sym_type] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2158), - [anon_sym_unsafe] = ACTIONS(2158), - [anon_sym_use] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2158), - [anon_sym_move] = ACTIONS(2158), - [anon_sym_try] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2156), - [aux_sym_string_literal_token1] = ACTIONS(2156), - [sym_char_literal] = ACTIONS(2156), - [anon_sym_true] = ACTIONS(2158), - [anon_sym_false] = ACTIONS(2158), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2158), - [sym_super] = ACTIONS(2158), - [sym_crate] = ACTIONS(2158), - [sym_metavariable] = ACTIONS(2156), - [sym__raw_string_literal_start] = ACTIONS(2156), - [sym_float_literal] = ACTIONS(2156), + [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(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_macro_rules_BANG] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_u8] = ACTIONS(2162), - [anon_sym_i8] = ACTIONS(2162), - [anon_sym_u16] = ACTIONS(2162), - [anon_sym_i16] = ACTIONS(2162), - [anon_sym_u32] = ACTIONS(2162), - [anon_sym_i32] = ACTIONS(2162), - [anon_sym_u64] = ACTIONS(2162), - [anon_sym_i64] = ACTIONS(2162), - [anon_sym_u128] = ACTIONS(2162), - [anon_sym_i128] = ACTIONS(2162), - [anon_sym_isize] = ACTIONS(2162), - [anon_sym_usize] = ACTIONS(2162), - [anon_sym_f32] = ACTIONS(2162), - [anon_sym_f64] = ACTIONS(2162), - [anon_sym_bool] = ACTIONS(2162), - [anon_sym_str] = ACTIONS(2162), - [anon_sym_char] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_DOT_DOT] = ACTIONS(2160), - [anon_sym_COLON_COLON] = ACTIONS(2160), - [anon_sym_POUND] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_async] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_default] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_gen] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_impl] = ACTIONS(2162), - [anon_sym_let] = ACTIONS(2162), - [anon_sym_loop] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_mod] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_trait] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_use] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2162), - [anon_sym_yield] = ACTIONS(2162), - [anon_sym_move] = ACTIONS(2162), - [anon_sym_try] = ACTIONS(2162), - [sym_integer_literal] = ACTIONS(2160), - [aux_sym_string_literal_token1] = ACTIONS(2160), - [sym_char_literal] = ACTIONS(2160), - [anon_sym_true] = ACTIONS(2162), - [anon_sym_false] = ACTIONS(2162), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2162), - [sym_super] = ACTIONS(2162), - [sym_crate] = ACTIONS(2162), - [sym_metavariable] = ACTIONS(2160), - [sym__raw_string_literal_start] = ACTIONS(2160), - [sym_float_literal] = ACTIONS(2160), + [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(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_macro_rules_BANG] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_u8] = ACTIONS(2166), - [anon_sym_i8] = ACTIONS(2166), - [anon_sym_u16] = ACTIONS(2166), - [anon_sym_i16] = ACTIONS(2166), - [anon_sym_u32] = ACTIONS(2166), - [anon_sym_i32] = ACTIONS(2166), - [anon_sym_u64] = ACTIONS(2166), - [anon_sym_i64] = ACTIONS(2166), - [anon_sym_u128] = ACTIONS(2166), - [anon_sym_i128] = ACTIONS(2166), - [anon_sym_isize] = ACTIONS(2166), - [anon_sym_usize] = ACTIONS(2166), - [anon_sym_f32] = ACTIONS(2166), - [anon_sym_f64] = ACTIONS(2166), - [anon_sym_bool] = ACTIONS(2166), - [anon_sym_str] = ACTIONS(2166), - [anon_sym_char] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_DOT_DOT] = ACTIONS(2164), - [anon_sym_COLON_COLON] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [anon_sym_fn] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_gen] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_impl] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2166), - [anon_sym_loop] = ACTIONS(2166), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_mod] = ACTIONS(2166), - [anon_sym_pub] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_struct] = ACTIONS(2166), - [anon_sym_trait] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_union] = ACTIONS(2166), - [anon_sym_unsafe] = ACTIONS(2166), - [anon_sym_use] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_extern] = ACTIONS(2166), - [anon_sym_yield] = ACTIONS(2166), - [anon_sym_move] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2166), - [sym_integer_literal] = ACTIONS(2164), - [aux_sym_string_literal_token1] = ACTIONS(2164), - [sym_char_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2166), - [anon_sym_false] = ACTIONS(2166), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_crate] = ACTIONS(2166), - [sym_metavariable] = ACTIONS(2164), - [sym__raw_string_literal_start] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), + [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(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_macro_rules_BANG] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_u8] = ACTIONS(2170), - [anon_sym_i8] = ACTIONS(2170), - [anon_sym_u16] = ACTIONS(2170), - [anon_sym_i16] = ACTIONS(2170), - [anon_sym_u32] = ACTIONS(2170), - [anon_sym_i32] = ACTIONS(2170), - [anon_sym_u64] = ACTIONS(2170), - [anon_sym_i64] = ACTIONS(2170), - [anon_sym_u128] = ACTIONS(2170), - [anon_sym_i128] = ACTIONS(2170), - [anon_sym_isize] = ACTIONS(2170), - [anon_sym_usize] = ACTIONS(2170), - [anon_sym_f32] = ACTIONS(2170), - [anon_sym_f64] = ACTIONS(2170), - [anon_sym_bool] = ACTIONS(2170), - [anon_sym_str] = ACTIONS(2170), - [anon_sym_char] = ACTIONS(2170), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_DOT_DOT] = ACTIONS(2168), - [anon_sym_COLON_COLON] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2170), - [anon_sym_async] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_fn] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_gen] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_impl] = ACTIONS(2170), - [anon_sym_let] = ACTIONS(2170), - [anon_sym_loop] = ACTIONS(2170), - [anon_sym_match] = ACTIONS(2170), - [anon_sym_mod] = ACTIONS(2170), - [anon_sym_pub] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2170), - [anon_sym_trait] = ACTIONS(2170), - [anon_sym_type] = ACTIONS(2170), - [anon_sym_union] = ACTIONS(2170), - [anon_sym_unsafe] = ACTIONS(2170), - [anon_sym_use] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym_yield] = ACTIONS(2170), - [anon_sym_move] = ACTIONS(2170), - [anon_sym_try] = ACTIONS(2170), - [sym_integer_literal] = ACTIONS(2168), - [aux_sym_string_literal_token1] = ACTIONS(2168), - [sym_char_literal] = ACTIONS(2168), - [anon_sym_true] = ACTIONS(2170), - [anon_sym_false] = ACTIONS(2170), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2170), - [sym_super] = ACTIONS(2170), - [sym_crate] = ACTIONS(2170), - [sym_metavariable] = ACTIONS(2168), - [sym__raw_string_literal_start] = ACTIONS(2168), - [sym_float_literal] = ACTIONS(2168), + [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(584)] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2172), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_macro_rules_BANG] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_u8] = ACTIONS(2174), - [anon_sym_i8] = ACTIONS(2174), - [anon_sym_u16] = ACTIONS(2174), - [anon_sym_i16] = ACTIONS(2174), - [anon_sym_u32] = ACTIONS(2174), - [anon_sym_i32] = ACTIONS(2174), - [anon_sym_u64] = ACTIONS(2174), - [anon_sym_i64] = ACTIONS(2174), - [anon_sym_u128] = ACTIONS(2174), - [anon_sym_i128] = ACTIONS(2174), - [anon_sym_isize] = ACTIONS(2174), - [anon_sym_usize] = ACTIONS(2174), - [anon_sym_f32] = ACTIONS(2174), - [anon_sym_f64] = ACTIONS(2174), - [anon_sym_bool] = ACTIONS(2174), - [anon_sym_str] = ACTIONS(2174), - [anon_sym_char] = ACTIONS(2174), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_DOT_DOT] = ACTIONS(2172), - [anon_sym_COLON_COLON] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_async] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_fn] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_gen] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_impl] = ACTIONS(2174), - [anon_sym_let] = ACTIONS(2174), - [anon_sym_loop] = ACTIONS(2174), - [anon_sym_match] = ACTIONS(2174), - [anon_sym_mod] = ACTIONS(2174), - [anon_sym_pub] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_trait] = ACTIONS(2174), - [anon_sym_type] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_unsafe] = ACTIONS(2174), - [anon_sym_use] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym_yield] = ACTIONS(2174), - [anon_sym_move] = ACTIONS(2174), - [anon_sym_try] = ACTIONS(2174), - [sym_integer_literal] = ACTIONS(2172), - [aux_sym_string_literal_token1] = ACTIONS(2172), - [sym_char_literal] = ACTIONS(2172), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_crate] = ACTIONS(2174), - [sym_metavariable] = ACTIONS(2172), - [sym__raw_string_literal_start] = ACTIONS(2172), - [sym_float_literal] = ACTIONS(2172), + [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(585)] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_u8] = ACTIONS(2178), - [anon_sym_i8] = ACTIONS(2178), - [anon_sym_u16] = ACTIONS(2178), - [anon_sym_i16] = ACTIONS(2178), - [anon_sym_u32] = ACTIONS(2178), - [anon_sym_i32] = ACTIONS(2178), - [anon_sym_u64] = ACTIONS(2178), - [anon_sym_i64] = ACTIONS(2178), - [anon_sym_u128] = ACTIONS(2178), - [anon_sym_i128] = ACTIONS(2178), - [anon_sym_isize] = ACTIONS(2178), - [anon_sym_usize] = ACTIONS(2178), - [anon_sym_f32] = ACTIONS(2178), - [anon_sym_f64] = ACTIONS(2178), - [anon_sym_bool] = ACTIONS(2178), - [anon_sym_str] = ACTIONS(2178), - [anon_sym_char] = ACTIONS(2178), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_DOT_DOT] = ACTIONS(2176), - [anon_sym_COLON_COLON] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_gen] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_impl] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_loop] = ACTIONS(2178), - [anon_sym_match] = ACTIONS(2178), - [anon_sym_mod] = ACTIONS(2178), - [anon_sym_pub] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_trait] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_unsafe] = ACTIONS(2178), - [anon_sym_use] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym_yield] = ACTIONS(2178), - [anon_sym_move] = ACTIONS(2178), - [anon_sym_try] = ACTIONS(2178), - [sym_integer_literal] = ACTIONS(2176), - [aux_sym_string_literal_token1] = ACTIONS(2176), - [sym_char_literal] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2178), - [anon_sym_false] = ACTIONS(2178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_crate] = ACTIONS(2178), - [sym_metavariable] = ACTIONS(2176), - [sym__raw_string_literal_start] = ACTIONS(2176), - [sym_float_literal] = ACTIONS(2176), + [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(586)] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_macro_rules_BANG] = ACTIONS(2180), - [anon_sym_LPAREN] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [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_DASH] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2180), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [anon_sym_COLON_COLON] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [anon_sym_fn] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_gen] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_impl] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_loop] = ACTIONS(2182), - [anon_sym_match] = ACTIONS(2182), - [anon_sym_mod] = ACTIONS(2182), - [anon_sym_pub] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(2182), - [anon_sym_trait] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_union] = ACTIONS(2182), - [anon_sym_unsafe] = ACTIONS(2182), - [anon_sym_use] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_extern] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_move] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [sym_integer_literal] = ACTIONS(2180), - [aux_sym_string_literal_token1] = ACTIONS(2180), - [sym_char_literal] = ACTIONS(2180), - [anon_sym_true] = ACTIONS(2182), - [anon_sym_false] = ACTIONS(2182), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_crate] = ACTIONS(2182), - [sym_metavariable] = ACTIONS(2180), - [sym__raw_string_literal_start] = ACTIONS(2180), - [sym_float_literal] = ACTIONS(2180), + [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(587)] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2184), - [sym_identifier] = ACTIONS(2186), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_macro_rules_BANG] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_u8] = ACTIONS(2186), - [anon_sym_i8] = ACTIONS(2186), - [anon_sym_u16] = ACTIONS(2186), - [anon_sym_i16] = ACTIONS(2186), - [anon_sym_u32] = ACTIONS(2186), - [anon_sym_i32] = ACTIONS(2186), - [anon_sym_u64] = ACTIONS(2186), - [anon_sym_i64] = ACTIONS(2186), - [anon_sym_u128] = ACTIONS(2186), - [anon_sym_i128] = ACTIONS(2186), - [anon_sym_isize] = ACTIONS(2186), - [anon_sym_usize] = ACTIONS(2186), - [anon_sym_f32] = ACTIONS(2186), - [anon_sym_f64] = ACTIONS(2186), - [anon_sym_bool] = ACTIONS(2186), - [anon_sym_str] = ACTIONS(2186), - [anon_sym_char] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_DOT_DOT] = ACTIONS(2184), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_break] = ACTIONS(2186), - [anon_sym_const] = ACTIONS(2186), - [anon_sym_continue] = ACTIONS(2186), - [anon_sym_default] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2186), - [anon_sym_fn] = ACTIONS(2186), - [anon_sym_for] = ACTIONS(2186), - [anon_sym_gen] = ACTIONS(2186), - [anon_sym_if] = ACTIONS(2186), - [anon_sym_impl] = ACTIONS(2186), - [anon_sym_let] = ACTIONS(2186), - [anon_sym_loop] = ACTIONS(2186), - [anon_sym_match] = ACTIONS(2186), - [anon_sym_mod] = ACTIONS(2186), - [anon_sym_pub] = ACTIONS(2186), - [anon_sym_return] = ACTIONS(2186), - [anon_sym_static] = ACTIONS(2186), - [anon_sym_struct] = ACTIONS(2186), - [anon_sym_trait] = ACTIONS(2186), - [anon_sym_type] = ACTIONS(2186), - [anon_sym_union] = ACTIONS(2186), - [anon_sym_unsafe] = ACTIONS(2186), - [anon_sym_use] = ACTIONS(2186), - [anon_sym_while] = ACTIONS(2186), - [anon_sym_extern] = ACTIONS(2186), - [anon_sym_yield] = ACTIONS(2186), - [anon_sym_move] = ACTIONS(2186), - [anon_sym_try] = ACTIONS(2186), - [sym_integer_literal] = ACTIONS(2184), - [aux_sym_string_literal_token1] = ACTIONS(2184), - [sym_char_literal] = ACTIONS(2184), - [anon_sym_true] = ACTIONS(2186), - [anon_sym_false] = ACTIONS(2186), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2186), - [sym_crate] = ACTIONS(2186), - [sym_metavariable] = ACTIONS(2184), - [sym__raw_string_literal_start] = ACTIONS(2184), - [sym_float_literal] = ACTIONS(2184), + [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(588)] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2188), - [sym_identifier] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_macro_rules_BANG] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2188), - [anon_sym_u8] = ACTIONS(2190), - [anon_sym_i8] = ACTIONS(2190), - [anon_sym_u16] = ACTIONS(2190), - [anon_sym_i16] = ACTIONS(2190), - [anon_sym_u32] = ACTIONS(2190), - [anon_sym_i32] = ACTIONS(2190), - [anon_sym_u64] = ACTIONS(2190), - [anon_sym_i64] = ACTIONS(2190), - [anon_sym_u128] = ACTIONS(2190), - [anon_sym_i128] = ACTIONS(2190), - [anon_sym_isize] = ACTIONS(2190), - [anon_sym_usize] = ACTIONS(2190), - [anon_sym_f32] = ACTIONS(2190), - [anon_sym_f64] = ACTIONS(2190), - [anon_sym_bool] = ACTIONS(2190), - [anon_sym_str] = ACTIONS(2190), - [anon_sym_char] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_AMP] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_DOT_DOT] = ACTIONS(2188), - [anon_sym_COLON_COLON] = ACTIONS(2188), - [anon_sym_POUND] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [anon_sym_fn] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_gen] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_impl] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_loop] = ACTIONS(2190), - [anon_sym_match] = ACTIONS(2190), - [anon_sym_mod] = ACTIONS(2190), - [anon_sym_pub] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_struct] = ACTIONS(2190), - [anon_sym_trait] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_union] = ACTIONS(2190), - [anon_sym_unsafe] = ACTIONS(2190), - [anon_sym_use] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_extern] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_move] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [sym_integer_literal] = ACTIONS(2188), - [aux_sym_string_literal_token1] = ACTIONS(2188), - [sym_char_literal] = ACTIONS(2188), - [anon_sym_true] = ACTIONS(2190), - [anon_sym_false] = ACTIONS(2190), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_crate] = ACTIONS(2190), - [sym_metavariable] = ACTIONS(2188), - [sym__raw_string_literal_start] = ACTIONS(2188), - [sym_float_literal] = ACTIONS(2188), + [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(589)] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_macro_rules_BANG] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_u8] = ACTIONS(2194), - [anon_sym_i8] = ACTIONS(2194), - [anon_sym_u16] = ACTIONS(2194), - [anon_sym_i16] = ACTIONS(2194), - [anon_sym_u32] = ACTIONS(2194), - [anon_sym_i32] = ACTIONS(2194), - [anon_sym_u64] = ACTIONS(2194), - [anon_sym_i64] = ACTIONS(2194), - [anon_sym_u128] = ACTIONS(2194), - [anon_sym_i128] = ACTIONS(2194), - [anon_sym_isize] = ACTIONS(2194), - [anon_sym_usize] = ACTIONS(2194), - [anon_sym_f32] = ACTIONS(2194), - [anon_sym_f64] = ACTIONS(2194), - [anon_sym_bool] = ACTIONS(2194), - [anon_sym_str] = ACTIONS(2194), - [anon_sym_char] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2192), - [anon_sym_COLON_COLON] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(2192), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_impl] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_loop] = ACTIONS(2194), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_mod] = ACTIONS(2194), - [anon_sym_pub] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_struct] = ACTIONS(2194), - [anon_sym_trait] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_union] = ACTIONS(2194), - [anon_sym_unsafe] = ACTIONS(2194), - [anon_sym_use] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_move] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [sym_integer_literal] = ACTIONS(2192), - [aux_sym_string_literal_token1] = ACTIONS(2192), - [sym_char_literal] = ACTIONS(2192), - [anon_sym_true] = ACTIONS(2194), - [anon_sym_false] = ACTIONS(2194), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_crate] = ACTIONS(2194), - [sym_metavariable] = ACTIONS(2192), - [sym__raw_string_literal_start] = ACTIONS(2192), - [sym_float_literal] = ACTIONS(2192), + [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(590)] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2196), - [sym_identifier] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_macro_rules_BANG] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_u8] = ACTIONS(2198), - [anon_sym_i8] = ACTIONS(2198), - [anon_sym_u16] = ACTIONS(2198), - [anon_sym_i16] = ACTIONS(2198), - [anon_sym_u32] = ACTIONS(2198), - [anon_sym_i32] = ACTIONS(2198), - [anon_sym_u64] = ACTIONS(2198), - [anon_sym_i64] = ACTIONS(2198), - [anon_sym_u128] = ACTIONS(2198), - [anon_sym_i128] = ACTIONS(2198), - [anon_sym_isize] = ACTIONS(2198), - [anon_sym_usize] = ACTIONS(2198), - [anon_sym_f32] = ACTIONS(2198), - [anon_sym_f64] = ACTIONS(2198), - [anon_sym_bool] = ACTIONS(2198), - [anon_sym_str] = ACTIONS(2198), - [anon_sym_char] = ACTIONS(2198), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_DOT_DOT] = ACTIONS(2196), - [anon_sym_COLON_COLON] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2198), - [anon_sym_async] = ACTIONS(2198), - [anon_sym_break] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_continue] = ACTIONS(2198), - [anon_sym_default] = ACTIONS(2198), - [anon_sym_enum] = ACTIONS(2198), - [anon_sym_fn] = ACTIONS(2198), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_gen] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2198), - [anon_sym_loop] = ACTIONS(2198), - [anon_sym_match] = ACTIONS(2198), - [anon_sym_mod] = ACTIONS(2198), - [anon_sym_pub] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2198), - [anon_sym_static] = ACTIONS(2198), - [anon_sym_struct] = ACTIONS(2198), - [anon_sym_trait] = ACTIONS(2198), - [anon_sym_type] = ACTIONS(2198), - [anon_sym_union] = ACTIONS(2198), - [anon_sym_unsafe] = ACTIONS(2198), - [anon_sym_use] = ACTIONS(2198), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_extern] = ACTIONS(2198), - [anon_sym_yield] = ACTIONS(2198), - [anon_sym_move] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2198), - [sym_integer_literal] = ACTIONS(2196), - [aux_sym_string_literal_token1] = ACTIONS(2196), - [sym_char_literal] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2198), - [sym_super] = ACTIONS(2198), - [sym_crate] = ACTIONS(2198), - [sym_metavariable] = ACTIONS(2196), - [sym__raw_string_literal_start] = ACTIONS(2196), - [sym_float_literal] = ACTIONS(2196), + [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(591)] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2200), - [sym_identifier] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_macro_rules_BANG] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_u8] = ACTIONS(2202), - [anon_sym_i8] = ACTIONS(2202), - [anon_sym_u16] = ACTIONS(2202), - [anon_sym_i16] = ACTIONS(2202), - [anon_sym_u32] = ACTIONS(2202), - [anon_sym_i32] = ACTIONS(2202), - [anon_sym_u64] = ACTIONS(2202), - [anon_sym_i64] = ACTIONS(2202), - [anon_sym_u128] = ACTIONS(2202), - [anon_sym_i128] = ACTIONS(2202), - [anon_sym_isize] = ACTIONS(2202), - [anon_sym_usize] = ACTIONS(2202), - [anon_sym_f32] = ACTIONS(2202), - [anon_sym_f64] = ACTIONS(2202), - [anon_sym_bool] = ACTIONS(2202), - [anon_sym_str] = ACTIONS(2202), - [anon_sym_char] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_DOT_DOT] = ACTIONS(2200), - [anon_sym_COLON_COLON] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(2200), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym_async] = ACTIONS(2202), - [anon_sym_break] = ACTIONS(2202), - [anon_sym_const] = ACTIONS(2202), - [anon_sym_continue] = ACTIONS(2202), - [anon_sym_default] = ACTIONS(2202), - [anon_sym_enum] = ACTIONS(2202), - [anon_sym_fn] = ACTIONS(2202), - [anon_sym_for] = ACTIONS(2202), - [anon_sym_gen] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_impl] = ACTIONS(2202), - [anon_sym_let] = ACTIONS(2202), - [anon_sym_loop] = ACTIONS(2202), - [anon_sym_match] = ACTIONS(2202), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(2202), - [anon_sym_return] = ACTIONS(2202), - [anon_sym_static] = ACTIONS(2202), - [anon_sym_struct] = ACTIONS(2202), - [anon_sym_trait] = ACTIONS(2202), - [anon_sym_type] = ACTIONS(2202), - [anon_sym_union] = ACTIONS(2202), - [anon_sym_unsafe] = ACTIONS(2202), - [anon_sym_use] = ACTIONS(2202), - [anon_sym_while] = ACTIONS(2202), - [anon_sym_extern] = ACTIONS(2202), - [anon_sym_yield] = ACTIONS(2202), - [anon_sym_move] = ACTIONS(2202), - [anon_sym_try] = ACTIONS(2202), - [sym_integer_literal] = ACTIONS(2200), - [aux_sym_string_literal_token1] = ACTIONS(2200), - [sym_char_literal] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2202), - [sym_super] = ACTIONS(2202), - [sym_crate] = ACTIONS(2202), - [sym_metavariable] = ACTIONS(2200), - [sym__raw_string_literal_start] = ACTIONS(2200), - [sym_float_literal] = ACTIONS(2200), + [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(592)] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2206), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_macro_rules_BANG] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_u8] = ACTIONS(2206), - [anon_sym_i8] = ACTIONS(2206), - [anon_sym_u16] = ACTIONS(2206), - [anon_sym_i16] = ACTIONS(2206), - [anon_sym_u32] = ACTIONS(2206), - [anon_sym_i32] = ACTIONS(2206), - [anon_sym_u64] = ACTIONS(2206), - [anon_sym_i64] = ACTIONS(2206), - [anon_sym_u128] = ACTIONS(2206), - [anon_sym_i128] = ACTIONS(2206), - [anon_sym_isize] = ACTIONS(2206), - [anon_sym_usize] = ACTIONS(2206), - [anon_sym_f32] = ACTIONS(2206), - [anon_sym_f64] = ACTIONS(2206), - [anon_sym_bool] = ACTIONS(2206), - [anon_sym_str] = ACTIONS(2206), - [anon_sym_char] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_DOT_DOT] = ACTIONS(2204), - [anon_sym_COLON_COLON] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2206), - [anon_sym_async] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2206), - [anon_sym_const] = ACTIONS(2206), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_default] = ACTIONS(2206), - [anon_sym_enum] = ACTIONS(2206), - [anon_sym_fn] = ACTIONS(2206), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_gen] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_impl] = ACTIONS(2206), - [anon_sym_let] = ACTIONS(2206), - [anon_sym_loop] = ACTIONS(2206), - [anon_sym_match] = ACTIONS(2206), - [anon_sym_mod] = ACTIONS(2206), - [anon_sym_pub] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2206), - [anon_sym_static] = ACTIONS(2206), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2206), - [anon_sym_type] = ACTIONS(2206), - [anon_sym_union] = ACTIONS(2206), - [anon_sym_unsafe] = ACTIONS(2206), - [anon_sym_use] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2206), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_yield] = ACTIONS(2206), - [anon_sym_move] = ACTIONS(2206), - [anon_sym_try] = ACTIONS(2206), - [sym_integer_literal] = ACTIONS(2204), - [aux_sym_string_literal_token1] = ACTIONS(2204), - [sym_char_literal] = ACTIONS(2204), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2206), - [sym_super] = ACTIONS(2206), - [sym_crate] = ACTIONS(2206), - [sym_metavariable] = ACTIONS(2204), - [sym__raw_string_literal_start] = ACTIONS(2204), - [sym_float_literal] = ACTIONS(2204), + [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(593)] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_macro_rules_BANG] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2208), - [anon_sym_u8] = ACTIONS(2210), - [anon_sym_i8] = ACTIONS(2210), - [anon_sym_u16] = ACTIONS(2210), - [anon_sym_i16] = ACTIONS(2210), - [anon_sym_u32] = ACTIONS(2210), - [anon_sym_i32] = ACTIONS(2210), - [anon_sym_u64] = ACTIONS(2210), - [anon_sym_i64] = ACTIONS(2210), - [anon_sym_u128] = ACTIONS(2210), - [anon_sym_i128] = ACTIONS(2210), - [anon_sym_isize] = ACTIONS(2210), - [anon_sym_usize] = ACTIONS(2210), - [anon_sym_f32] = ACTIONS(2210), - [anon_sym_f64] = ACTIONS(2210), - [anon_sym_bool] = ACTIONS(2210), - [anon_sym_str] = ACTIONS(2210), - [anon_sym_char] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_DOT_DOT] = ACTIONS(2208), - [anon_sym_COLON_COLON] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2210), - [anon_sym_async] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_default] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_gen] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_impl] = ACTIONS(2210), - [anon_sym_let] = ACTIONS(2210), - [anon_sym_loop] = ACTIONS(2210), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_mod] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2210), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_trait] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_use] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2210), - [anon_sym_extern] = ACTIONS(2210), - [anon_sym_yield] = ACTIONS(2210), - [anon_sym_move] = ACTIONS(2210), - [anon_sym_try] = ACTIONS(2210), - [sym_integer_literal] = ACTIONS(2208), - [aux_sym_string_literal_token1] = ACTIONS(2208), - [sym_char_literal] = ACTIONS(2208), - [anon_sym_true] = ACTIONS(2210), - [anon_sym_false] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2210), - [sym_super] = ACTIONS(2210), - [sym_crate] = ACTIONS(2210), - [sym_metavariable] = ACTIONS(2208), - [sym__raw_string_literal_start] = ACTIONS(2208), - [sym_float_literal] = ACTIONS(2208), + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), }, [STATE(594)] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_macro_rules_BANG] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_STAR] = ACTIONS(2212), - [anon_sym_u8] = ACTIONS(2214), - [anon_sym_i8] = ACTIONS(2214), - [anon_sym_u16] = ACTIONS(2214), - [anon_sym_i16] = ACTIONS(2214), - [anon_sym_u32] = ACTIONS(2214), - [anon_sym_i32] = ACTIONS(2214), - [anon_sym_u64] = ACTIONS(2214), - [anon_sym_i64] = ACTIONS(2214), - [anon_sym_u128] = ACTIONS(2214), - [anon_sym_i128] = ACTIONS(2214), - [anon_sym_isize] = ACTIONS(2214), - [anon_sym_usize] = ACTIONS(2214), - [anon_sym_f32] = ACTIONS(2214), - [anon_sym_f64] = ACTIONS(2214), - [anon_sym_bool] = ACTIONS(2214), - [anon_sym_str] = ACTIONS(2214), - [anon_sym_char] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_DOT_DOT] = ACTIONS(2212), - [anon_sym_COLON_COLON] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2214), - [anon_sym_async] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_default] = ACTIONS(2214), - [anon_sym_enum] = ACTIONS(2214), - [anon_sym_fn] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_gen] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_impl] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_loop] = ACTIONS(2214), - [anon_sym_match] = ACTIONS(2214), - [anon_sym_mod] = ACTIONS(2214), - [anon_sym_pub] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_static] = ACTIONS(2214), - [anon_sym_struct] = ACTIONS(2214), - [anon_sym_trait] = ACTIONS(2214), - [anon_sym_type] = ACTIONS(2214), - [anon_sym_union] = ACTIONS(2214), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_yield] = ACTIONS(2214), - [anon_sym_move] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [sym_integer_literal] = ACTIONS(2212), - [aux_sym_string_literal_token1] = ACTIONS(2212), - [sym_char_literal] = ACTIONS(2212), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2214), - [sym_super] = ACTIONS(2214), - [sym_crate] = ACTIONS(2214), - [sym_metavariable] = ACTIONS(2212), - [sym__raw_string_literal_start] = ACTIONS(2212), - [sym_float_literal] = ACTIONS(2212), + [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(595)] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2216), - [sym_identifier] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_macro_rules_BANG] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_u8] = ACTIONS(2218), - [anon_sym_i8] = ACTIONS(2218), - [anon_sym_u16] = ACTIONS(2218), - [anon_sym_i16] = ACTIONS(2218), - [anon_sym_u32] = ACTIONS(2218), - [anon_sym_i32] = ACTIONS(2218), - [anon_sym_u64] = ACTIONS(2218), - [anon_sym_i64] = ACTIONS(2218), - [anon_sym_u128] = ACTIONS(2218), - [anon_sym_i128] = ACTIONS(2218), - [anon_sym_isize] = ACTIONS(2218), - [anon_sym_usize] = ACTIONS(2218), - [anon_sym_f32] = ACTIONS(2218), - [anon_sym_f64] = ACTIONS(2218), - [anon_sym_bool] = ACTIONS(2218), - [anon_sym_str] = ACTIONS(2218), - [anon_sym_char] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_DOT_DOT] = ACTIONS(2216), - [anon_sym_COLON_COLON] = ACTIONS(2216), - [anon_sym_POUND] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2218), - [anon_sym_async] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_default] = ACTIONS(2218), - [anon_sym_enum] = ACTIONS(2218), - [anon_sym_fn] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_gen] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_impl] = ACTIONS(2218), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_loop] = ACTIONS(2218), - [anon_sym_match] = ACTIONS(2218), - [anon_sym_mod] = ACTIONS(2218), - [anon_sym_pub] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_struct] = ACTIONS(2218), - [anon_sym_trait] = ACTIONS(2218), - [anon_sym_type] = ACTIONS(2218), - [anon_sym_union] = ACTIONS(2218), - [anon_sym_unsafe] = ACTIONS(2218), - [anon_sym_use] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_yield] = ACTIONS(2218), - [anon_sym_move] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2218), - [sym_integer_literal] = ACTIONS(2216), - [aux_sym_string_literal_token1] = ACTIONS(2216), - [sym_char_literal] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2218), - [sym_super] = ACTIONS(2218), - [sym_crate] = ACTIONS(2218), - [sym_metavariable] = ACTIONS(2216), - [sym__raw_string_literal_start] = ACTIONS(2216), - [sym_float_literal] = ACTIONS(2216), + [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(596)] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2220), - [sym_identifier] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym_macro_rules_BANG] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_u8] = ACTIONS(2222), - [anon_sym_i8] = ACTIONS(2222), - [anon_sym_u16] = ACTIONS(2222), - [anon_sym_i16] = ACTIONS(2222), - [anon_sym_u32] = ACTIONS(2222), - [anon_sym_i32] = ACTIONS(2222), - [anon_sym_u64] = ACTIONS(2222), - [anon_sym_i64] = ACTIONS(2222), - [anon_sym_u128] = ACTIONS(2222), - [anon_sym_i128] = ACTIONS(2222), - [anon_sym_isize] = ACTIONS(2222), - [anon_sym_usize] = ACTIONS(2222), - [anon_sym_f32] = ACTIONS(2222), - [anon_sym_f64] = ACTIONS(2222), - [anon_sym_bool] = ACTIONS(2222), - [anon_sym_str] = ACTIONS(2222), - [anon_sym_char] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_AMP] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_DOT_DOT] = ACTIONS(2220), - [anon_sym_COLON_COLON] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_fn] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_gen] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_impl] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_loop] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2222), - [anon_sym_mod] = ACTIONS(2222), - [anon_sym_pub] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_trait] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_unsafe] = ACTIONS(2222), - [anon_sym_use] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_yield] = ACTIONS(2222), - [anon_sym_move] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [sym_integer_literal] = ACTIONS(2220), - [aux_sym_string_literal_token1] = ACTIONS(2220), - [sym_char_literal] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2220), - [sym__raw_string_literal_start] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), + [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(597)] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2224), - [sym_identifier] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_macro_rules_BANG] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_u8] = ACTIONS(2226), - [anon_sym_i8] = ACTIONS(2226), - [anon_sym_u16] = ACTIONS(2226), - [anon_sym_i16] = ACTIONS(2226), - [anon_sym_u32] = ACTIONS(2226), - [anon_sym_i32] = ACTIONS(2226), - [anon_sym_u64] = ACTIONS(2226), - [anon_sym_i64] = ACTIONS(2226), - [anon_sym_u128] = ACTIONS(2226), - [anon_sym_i128] = ACTIONS(2226), - [anon_sym_isize] = ACTIONS(2226), - [anon_sym_usize] = ACTIONS(2226), - [anon_sym_f32] = ACTIONS(2226), - [anon_sym_f64] = ACTIONS(2226), - [anon_sym_bool] = ACTIONS(2226), - [anon_sym_str] = ACTIONS(2226), - [anon_sym_char] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_DOT_DOT] = ACTIONS(2224), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_POUND] = ACTIONS(2224), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [anon_sym_fn] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_gen] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_impl] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_loop] = ACTIONS(2226), - [anon_sym_match] = ACTIONS(2226), - [anon_sym_mod] = ACTIONS(2226), - [anon_sym_pub] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_struct] = ACTIONS(2226), - [anon_sym_trait] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_union] = ACTIONS(2226), - [anon_sym_unsafe] = ACTIONS(2226), - [anon_sym_use] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_extern] = ACTIONS(2226), - [anon_sym_yield] = ACTIONS(2226), - [anon_sym_move] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [sym_integer_literal] = ACTIONS(2224), - [aux_sym_string_literal_token1] = ACTIONS(2224), - [sym_char_literal] = ACTIONS(2224), - [anon_sym_true] = ACTIONS(2226), - [anon_sym_false] = ACTIONS(2226), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_crate] = ACTIONS(2226), - [sym_metavariable] = ACTIONS(2224), - [sym__raw_string_literal_start] = ACTIONS(2224), - [sym_float_literal] = ACTIONS(2224), + [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(598)] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_macro_rules_BANG] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_u8] = ACTIONS(2230), - [anon_sym_i8] = ACTIONS(2230), - [anon_sym_u16] = ACTIONS(2230), - [anon_sym_i16] = ACTIONS(2230), - [anon_sym_u32] = ACTIONS(2230), - [anon_sym_i32] = ACTIONS(2230), - [anon_sym_u64] = ACTIONS(2230), - [anon_sym_i64] = ACTIONS(2230), - [anon_sym_u128] = ACTIONS(2230), - [anon_sym_i128] = ACTIONS(2230), - [anon_sym_isize] = ACTIONS(2230), - [anon_sym_usize] = ACTIONS(2230), - [anon_sym_f32] = ACTIONS(2230), - [anon_sym_f64] = ACTIONS(2230), - [anon_sym_bool] = ACTIONS(2230), - [anon_sym_str] = ACTIONS(2230), - [anon_sym_char] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_DOT_DOT] = ACTIONS(2228), - [anon_sym_COLON_COLON] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_gen] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_impl] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_mod] = ACTIONS(2230), - [anon_sym_pub] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_trait] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_move] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [sym_integer_literal] = ACTIONS(2228), - [aux_sym_string_literal_token1] = ACTIONS(2228), - [sym_char_literal] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_crate] = ACTIONS(2230), - [sym_metavariable] = ACTIONS(2228), - [sym__raw_string_literal_start] = ACTIONS(2228), - [sym_float_literal] = ACTIONS(2228), + [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(599)] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_identifier] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_macro_rules_BANG] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_u8] = ACTIONS(2234), - [anon_sym_i8] = ACTIONS(2234), - [anon_sym_u16] = ACTIONS(2234), - [anon_sym_i16] = ACTIONS(2234), - [anon_sym_u32] = ACTIONS(2234), - [anon_sym_i32] = ACTIONS(2234), - [anon_sym_u64] = ACTIONS(2234), - [anon_sym_i64] = ACTIONS(2234), - [anon_sym_u128] = ACTIONS(2234), - [anon_sym_i128] = ACTIONS(2234), - [anon_sym_isize] = ACTIONS(2234), - [anon_sym_usize] = ACTIONS(2234), - [anon_sym_f32] = ACTIONS(2234), - [anon_sym_f64] = ACTIONS(2234), - [anon_sym_bool] = ACTIONS(2234), - [anon_sym_str] = ACTIONS(2234), - [anon_sym_char] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2232), - [anon_sym_DOT_DOT] = ACTIONS(2232), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_default] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_fn] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_gen] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_impl] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_mod] = ACTIONS(2234), - [anon_sym_pub] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_trait] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [anon_sym_unsafe] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_move] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [sym_integer_literal] = ACTIONS(2232), - [aux_sym_string_literal_token1] = ACTIONS(2232), - [sym_char_literal] = ACTIONS(2232), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_crate] = ACTIONS(2234), - [sym_metavariable] = ACTIONS(2232), - [sym__raw_string_literal_start] = ACTIONS(2232), - [sym_float_literal] = ACTIONS(2232), + [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(600)] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2236), - [sym_identifier] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2236), - [anon_sym_macro_rules_BANG] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_LBRACE] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(2236), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_u8] = ACTIONS(2238), - [anon_sym_i8] = ACTIONS(2238), - [anon_sym_u16] = ACTIONS(2238), - [anon_sym_i16] = ACTIONS(2238), - [anon_sym_u32] = ACTIONS(2238), - [anon_sym_i32] = ACTIONS(2238), - [anon_sym_u64] = ACTIONS(2238), - [anon_sym_i64] = ACTIONS(2238), - [anon_sym_u128] = ACTIONS(2238), - [anon_sym_i128] = ACTIONS(2238), - [anon_sym_isize] = ACTIONS(2238), - [anon_sym_usize] = ACTIONS(2238), - [anon_sym_f32] = ACTIONS(2238), - [anon_sym_f64] = ACTIONS(2238), - [anon_sym_bool] = ACTIONS(2238), - [anon_sym_str] = ACTIONS(2238), - [anon_sym_char] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_BANG] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2236), - [anon_sym_DOT_DOT] = ACTIONS(2236), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_POUND] = ACTIONS(2236), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [anon_sym_fn] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_gen] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_impl] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_loop] = ACTIONS(2238), - [anon_sym_match] = ACTIONS(2238), - [anon_sym_mod] = ACTIONS(2238), - [anon_sym_pub] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_struct] = ACTIONS(2238), - [anon_sym_trait] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_union] = ACTIONS(2238), - [anon_sym_unsafe] = ACTIONS(2238), - [anon_sym_use] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_move] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [sym_integer_literal] = ACTIONS(2236), - [aux_sym_string_literal_token1] = ACTIONS(2236), - [sym_char_literal] = ACTIONS(2236), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_crate] = ACTIONS(2238), - [sym_metavariable] = ACTIONS(2236), - [sym__raw_string_literal_start] = ACTIONS(2236), - [sym_float_literal] = ACTIONS(2236), + [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(601)] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2240), - [sym_identifier] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_macro_rules_BANG] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_u8] = ACTIONS(2242), - [anon_sym_i8] = ACTIONS(2242), - [anon_sym_u16] = ACTIONS(2242), - [anon_sym_i16] = ACTIONS(2242), - [anon_sym_u32] = ACTIONS(2242), - [anon_sym_i32] = ACTIONS(2242), - [anon_sym_u64] = ACTIONS(2242), - [anon_sym_i64] = ACTIONS(2242), - [anon_sym_u128] = ACTIONS(2242), - [anon_sym_i128] = ACTIONS(2242), - [anon_sym_isize] = ACTIONS(2242), - [anon_sym_usize] = ACTIONS(2242), - [anon_sym_f32] = ACTIONS(2242), - [anon_sym_f64] = ACTIONS(2242), - [anon_sym_bool] = ACTIONS(2242), - [anon_sym_str] = ACTIONS(2242), - [anon_sym_char] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2240), - [anon_sym_DOT_DOT] = ACTIONS(2240), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_default] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [anon_sym_fn] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_gen] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_impl] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_loop] = ACTIONS(2242), - [anon_sym_match] = ACTIONS(2242), - [anon_sym_mod] = ACTIONS(2242), - [anon_sym_pub] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_static] = ACTIONS(2242), - [anon_sym_struct] = ACTIONS(2242), - [anon_sym_trait] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_union] = ACTIONS(2242), - [anon_sym_unsafe] = ACTIONS(2242), - [anon_sym_use] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(2242), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_move] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [sym_integer_literal] = ACTIONS(2240), - [aux_sym_string_literal_token1] = ACTIONS(2240), - [sym_char_literal] = ACTIONS(2240), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_crate] = ACTIONS(2242), - [sym_metavariable] = ACTIONS(2240), - [sym__raw_string_literal_start] = ACTIONS(2240), - [sym_float_literal] = ACTIONS(2240), + [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(602)] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2244), - [sym_identifier] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2244), - [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), + [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(603)] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2248), - [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), + [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(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2252), - [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), + [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(605)] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2256), - [sym_identifier] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2256), - [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), + [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(606)] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2260), - [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), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_macro_rules_BANG] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_u8] = ACTIONS(2372), + [anon_sym_i8] = ACTIONS(2372), + [anon_sym_u16] = ACTIONS(2372), + [anon_sym_i16] = ACTIONS(2372), + [anon_sym_u32] = ACTIONS(2372), + [anon_sym_i32] = ACTIONS(2372), + [anon_sym_u64] = ACTIONS(2372), + [anon_sym_i64] = ACTIONS(2372), + [anon_sym_u128] = ACTIONS(2372), + [anon_sym_i128] = ACTIONS(2372), + [anon_sym_isize] = ACTIONS(2372), + [anon_sym_usize] = ACTIONS(2372), + [anon_sym_f32] = ACTIONS(2372), + [anon_sym_f64] = ACTIONS(2372), + [anon_sym_bool] = ACTIONS(2372), + [anon_sym_str] = ACTIONS(2372), + [anon_sym_char] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_DOT_DOT] = ACTIONS(2370), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_POUND] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2372), + [anon_sym_async] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_fn] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_gen] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_impl] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_loop] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_mod] = ACTIONS(2372), + [anon_sym_pub] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_trait] = ACTIONS(2372), + [anon_sym_type] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_unsafe] = ACTIONS(2372), + [anon_sym_use] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_yield] = ACTIONS(2372), + [anon_sym_move] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [sym_integer_literal] = ACTIONS(2370), + [aux_sym_string_literal_token1] = ACTIONS(2370), + [sym_char_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2372), + [sym_super] = ACTIONS(2372), + [sym_crate] = ACTIONS(2372), + [sym_metavariable] = ACTIONS(2370), + [sym__raw_string_literal_start] = ACTIONS(2370), + [sym_float_literal] = ACTIONS(2370), }, [STATE(607)] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2264), - [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), + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_macro_rules_BANG] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_u8] = ACTIONS(2376), + [anon_sym_i8] = ACTIONS(2376), + [anon_sym_u16] = ACTIONS(2376), + [anon_sym_i16] = ACTIONS(2376), + [anon_sym_u32] = ACTIONS(2376), + [anon_sym_i32] = ACTIONS(2376), + [anon_sym_u64] = ACTIONS(2376), + [anon_sym_i64] = ACTIONS(2376), + [anon_sym_u128] = ACTIONS(2376), + [anon_sym_i128] = ACTIONS(2376), + [anon_sym_isize] = ACTIONS(2376), + [anon_sym_usize] = ACTIONS(2376), + [anon_sym_f32] = ACTIONS(2376), + [anon_sym_f64] = ACTIONS(2376), + [anon_sym_bool] = ACTIONS(2376), + [anon_sym_str] = ACTIONS(2376), + [anon_sym_char] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_DOT_DOT] = ACTIONS(2374), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [anon_sym_fn] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_gen] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_impl] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_loop] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2376), + [anon_sym_mod] = ACTIONS(2376), + [anon_sym_pub] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_struct] = ACTIONS(2376), + [anon_sym_trait] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_union] = ACTIONS(2376), + [anon_sym_unsafe] = ACTIONS(2376), + [anon_sym_use] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_move] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [sym_integer_literal] = ACTIONS(2374), + [aux_sym_string_literal_token1] = ACTIONS(2374), + [sym_char_literal] = ACTIONS(2374), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_crate] = ACTIONS(2376), + [sym_metavariable] = ACTIONS(2374), + [sym__raw_string_literal_start] = ACTIONS(2374), + [sym_float_literal] = ACTIONS(2374), }, [STATE(608)] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2268), - [sym_identifier] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2268), - [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), + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_macro_rules_BANG] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_u8] = ACTIONS(2380), + [anon_sym_i8] = ACTIONS(2380), + [anon_sym_u16] = ACTIONS(2380), + [anon_sym_i16] = ACTIONS(2380), + [anon_sym_u32] = ACTIONS(2380), + [anon_sym_i32] = ACTIONS(2380), + [anon_sym_u64] = ACTIONS(2380), + [anon_sym_i64] = ACTIONS(2380), + [anon_sym_u128] = ACTIONS(2380), + [anon_sym_i128] = ACTIONS(2380), + [anon_sym_isize] = ACTIONS(2380), + [anon_sym_usize] = ACTIONS(2380), + [anon_sym_f32] = ACTIONS(2380), + [anon_sym_f64] = ACTIONS(2380), + [anon_sym_bool] = ACTIONS(2380), + [anon_sym_str] = ACTIONS(2380), + [anon_sym_char] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_COLON_COLON] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [anon_sym_fn] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_gen] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_impl] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_loop] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_mod] = ACTIONS(2380), + [anon_sym_pub] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_struct] = ACTIONS(2380), + [anon_sym_trait] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_union] = ACTIONS(2380), + [anon_sym_unsafe] = ACTIONS(2380), + [anon_sym_use] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_move] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [sym_integer_literal] = ACTIONS(2378), + [aux_sym_string_literal_token1] = ACTIONS(2378), + [sym_char_literal] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_crate] = ACTIONS(2380), + [sym_metavariable] = ACTIONS(2378), + [sym__raw_string_literal_start] = ACTIONS(2378), + [sym_float_literal] = ACTIONS(2378), }, [STATE(609)] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2272), - [sym_identifier] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2272), - [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), + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_macro_rules_BANG] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_u8] = ACTIONS(2384), + [anon_sym_i8] = ACTIONS(2384), + [anon_sym_u16] = ACTIONS(2384), + [anon_sym_i16] = ACTIONS(2384), + [anon_sym_u32] = ACTIONS(2384), + [anon_sym_i32] = ACTIONS(2384), + [anon_sym_u64] = ACTIONS(2384), + [anon_sym_i64] = ACTIONS(2384), + [anon_sym_u128] = ACTIONS(2384), + [anon_sym_i128] = ACTIONS(2384), + [anon_sym_isize] = ACTIONS(2384), + [anon_sym_usize] = ACTIONS(2384), + [anon_sym_f32] = ACTIONS(2384), + [anon_sym_f64] = ACTIONS(2384), + [anon_sym_bool] = ACTIONS(2384), + [anon_sym_str] = ACTIONS(2384), + [anon_sym_char] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_BANG] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_DOT_DOT] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(2382), + [anon_sym_POUND] = ACTIONS(2382), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_fn] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_gen] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_impl] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_loop] = ACTIONS(2384), + [anon_sym_match] = ACTIONS(2384), + [anon_sym_mod] = ACTIONS(2384), + [anon_sym_pub] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_trait] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_unsafe] = ACTIONS(2384), + [anon_sym_use] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_move] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [sym_integer_literal] = ACTIONS(2382), + [aux_sym_string_literal_token1] = ACTIONS(2382), + [sym_char_literal] = ACTIONS(2382), + [anon_sym_true] = ACTIONS(2384), + [anon_sym_false] = ACTIONS(2384), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_crate] = ACTIONS(2384), + [sym_metavariable] = ACTIONS(2382), + [sym__raw_string_literal_start] = ACTIONS(2382), + [sym_float_literal] = ACTIONS(2382), }, [STATE(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2276), - [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), + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_macro_rules_BANG] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_u8] = ACTIONS(2388), + [anon_sym_i8] = ACTIONS(2388), + [anon_sym_u16] = ACTIONS(2388), + [anon_sym_i16] = ACTIONS(2388), + [anon_sym_u32] = ACTIONS(2388), + [anon_sym_i32] = ACTIONS(2388), + [anon_sym_u64] = ACTIONS(2388), + [anon_sym_i64] = ACTIONS(2388), + [anon_sym_u128] = ACTIONS(2388), + [anon_sym_i128] = ACTIONS(2388), + [anon_sym_isize] = ACTIONS(2388), + [anon_sym_usize] = ACTIONS(2388), + [anon_sym_f32] = ACTIONS(2388), + [anon_sym_f64] = ACTIONS(2388), + [anon_sym_bool] = ACTIONS(2388), + [anon_sym_str] = ACTIONS(2388), + [anon_sym_char] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_DOT_DOT] = ACTIONS(2386), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_POUND] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [anon_sym_fn] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_gen] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_impl] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_loop] = ACTIONS(2388), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_mod] = ACTIONS(2388), + [anon_sym_pub] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_trait] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_union] = ACTIONS(2388), + [anon_sym_unsafe] = ACTIONS(2388), + [anon_sym_use] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_move] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [sym_integer_literal] = ACTIONS(2386), + [aux_sym_string_literal_token1] = ACTIONS(2386), + [sym_char_literal] = ACTIONS(2386), + [anon_sym_true] = ACTIONS(2388), + [anon_sym_false] = ACTIONS(2388), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_crate] = ACTIONS(2388), + [sym_metavariable] = ACTIONS(2386), + [sym__raw_string_literal_start] = ACTIONS(2386), + [sym_float_literal] = ACTIONS(2386), }, [STATE(611)] = { + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym_closure_expression] = STATE(3249), + [sym_closure_parameters] = STATE(217), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2280), - [sym_identifier] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2280), - [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), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2284), - [sym_identifier] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2284), - [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), + [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(613)] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2288), - [sym_identifier] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2288), - [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), + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_macro_rules_BANG] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_u8] = ACTIONS(2392), + [anon_sym_i8] = ACTIONS(2392), + [anon_sym_u16] = ACTIONS(2392), + [anon_sym_i16] = ACTIONS(2392), + [anon_sym_u32] = ACTIONS(2392), + [anon_sym_i32] = ACTIONS(2392), + [anon_sym_u64] = ACTIONS(2392), + [anon_sym_i64] = ACTIONS(2392), + [anon_sym_u128] = ACTIONS(2392), + [anon_sym_i128] = ACTIONS(2392), + [anon_sym_isize] = ACTIONS(2392), + [anon_sym_usize] = ACTIONS(2392), + [anon_sym_f32] = ACTIONS(2392), + [anon_sym_f64] = ACTIONS(2392), + [anon_sym_bool] = ACTIONS(2392), + [anon_sym_str] = ACTIONS(2392), + [anon_sym_char] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_DOT_DOT] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_default] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_gen] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_impl] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_loop] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_mod] = ACTIONS(2392), + [anon_sym_pub] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_trait] = ACTIONS(2392), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_union] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_use] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_extern] = ACTIONS(2392), + [anon_sym_yield] = ACTIONS(2392), + [anon_sym_move] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2392), + [sym_integer_literal] = ACTIONS(2390), + [aux_sym_string_literal_token1] = ACTIONS(2390), + [sym_char_literal] = ACTIONS(2390), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2392), + [sym_super] = ACTIONS(2392), + [sym_crate] = ACTIONS(2392), + [sym_metavariable] = ACTIONS(2390), + [sym__raw_string_literal_start] = ACTIONS(2390), + [sym_float_literal] = ACTIONS(2390), }, [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2292), - [sym_identifier] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2292), - [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), + [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(615)] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2296), - [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), + [ts_builtin_sym_end] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_macro_rules_BANG] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_u8] = ACTIONS(2396), + [anon_sym_i8] = ACTIONS(2396), + [anon_sym_u16] = ACTIONS(2396), + [anon_sym_i16] = ACTIONS(2396), + [anon_sym_u32] = ACTIONS(2396), + [anon_sym_i32] = ACTIONS(2396), + [anon_sym_u64] = ACTIONS(2396), + [anon_sym_i64] = ACTIONS(2396), + [anon_sym_u128] = ACTIONS(2396), + [anon_sym_i128] = ACTIONS(2396), + [anon_sym_isize] = ACTIONS(2396), + [anon_sym_usize] = ACTIONS(2396), + [anon_sym_f32] = ACTIONS(2396), + [anon_sym_f64] = ACTIONS(2396), + [anon_sym_bool] = ACTIONS(2396), + [anon_sym_str] = ACTIONS(2396), + [anon_sym_char] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2394), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_POUND] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_fn] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_gen] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_impl] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_loop] = ACTIONS(2396), + [anon_sym_match] = ACTIONS(2396), + [anon_sym_mod] = ACTIONS(2396), + [anon_sym_pub] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_trait] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [anon_sym_unsafe] = ACTIONS(2396), + [anon_sym_use] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_move] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [sym_integer_literal] = ACTIONS(2394), + [aux_sym_string_literal_token1] = ACTIONS(2394), + [sym_char_literal] = ACTIONS(2394), + [anon_sym_true] = ACTIONS(2396), + [anon_sym_false] = ACTIONS(2396), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_crate] = ACTIONS(2396), + [sym_metavariable] = ACTIONS(2394), + [sym__raw_string_literal_start] = ACTIONS(2394), + [sym_float_literal] = ACTIONS(2394), }, [STATE(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2300), - [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(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(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2304), - [sym_identifier] = ACTIONS(2306), - [anon_sym_SEMI] = ACTIONS(2304), - [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(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(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2308), - [sym_identifier] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2308), - [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(2398), + [sym_identifier] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_macro_rules_BANG] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_u8] = ACTIONS(2400), + [anon_sym_i8] = ACTIONS(2400), + [anon_sym_u16] = ACTIONS(2400), + [anon_sym_i16] = ACTIONS(2400), + [anon_sym_u32] = ACTIONS(2400), + [anon_sym_i32] = ACTIONS(2400), + [anon_sym_u64] = ACTIONS(2400), + [anon_sym_i64] = ACTIONS(2400), + [anon_sym_u128] = ACTIONS(2400), + [anon_sym_i128] = ACTIONS(2400), + [anon_sym_isize] = ACTIONS(2400), + [anon_sym_usize] = ACTIONS(2400), + [anon_sym_f32] = ACTIONS(2400), + [anon_sym_f64] = ACTIONS(2400), + [anon_sym_bool] = ACTIONS(2400), + [anon_sym_str] = ACTIONS(2400), + [anon_sym_char] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_DOT_DOT] = ACTIONS(2398), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2400), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_fn] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_gen] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_impl] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_loop] = ACTIONS(2400), + [anon_sym_match] = ACTIONS(2400), + [anon_sym_mod] = ACTIONS(2400), + [anon_sym_pub] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_trait] = ACTIONS(2400), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [anon_sym_unsafe] = ACTIONS(2400), + [anon_sym_use] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_yield] = ACTIONS(2400), + [anon_sym_move] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [sym_integer_literal] = ACTIONS(2398), + [aux_sym_string_literal_token1] = ACTIONS(2398), + [sym_char_literal] = ACTIONS(2398), + [anon_sym_true] = ACTIONS(2400), + [anon_sym_false] = ACTIONS(2400), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2400), + [sym_super] = ACTIONS(2400), + [sym_crate] = ACTIONS(2400), + [sym_metavariable] = ACTIONS(2398), + [sym__raw_string_literal_start] = ACTIONS(2398), + [sym_float_literal] = ACTIONS(2398), }, [STATE(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2312), - [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(2402), + [sym_identifier] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_macro_rules_BANG] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_u8] = ACTIONS(2404), + [anon_sym_i8] = ACTIONS(2404), + [anon_sym_u16] = ACTIONS(2404), + [anon_sym_i16] = ACTIONS(2404), + [anon_sym_u32] = ACTIONS(2404), + [anon_sym_i32] = ACTIONS(2404), + [anon_sym_u64] = ACTIONS(2404), + [anon_sym_i64] = ACTIONS(2404), + [anon_sym_u128] = ACTIONS(2404), + [anon_sym_i128] = ACTIONS(2404), + [anon_sym_isize] = ACTIONS(2404), + [anon_sym_usize] = ACTIONS(2404), + [anon_sym_f32] = ACTIONS(2404), + [anon_sym_f64] = ACTIONS(2404), + [anon_sym_bool] = ACTIONS(2404), + [anon_sym_str] = ACTIONS(2404), + [anon_sym_char] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_fn] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_gen] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_impl] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_loop] = ACTIONS(2404), + [anon_sym_match] = ACTIONS(2404), + [anon_sym_mod] = ACTIONS(2404), + [anon_sym_pub] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_trait] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [anon_sym_unsafe] = ACTIONS(2404), + [anon_sym_use] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_move] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [sym_integer_literal] = ACTIONS(2402), + [aux_sym_string_literal_token1] = ACTIONS(2402), + [sym_char_literal] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2404), + [anon_sym_false] = ACTIONS(2404), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_crate] = ACTIONS(2404), + [sym_metavariable] = ACTIONS(2402), + [sym__raw_string_literal_start] = ACTIONS(2402), + [sym_float_literal] = ACTIONS(2402), }, [STATE(620)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_pattern] = STATE(3609), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [aux_sym_match_arm_repeat1] = STATE(1073), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_macro_rules_BANG] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_u8] = ACTIONS(2408), + [anon_sym_i8] = ACTIONS(2408), + [anon_sym_u16] = ACTIONS(2408), + [anon_sym_i16] = ACTIONS(2408), + [anon_sym_u32] = ACTIONS(2408), + [anon_sym_i32] = ACTIONS(2408), + [anon_sym_u64] = ACTIONS(2408), + [anon_sym_i64] = ACTIONS(2408), + [anon_sym_u128] = ACTIONS(2408), + [anon_sym_i128] = ACTIONS(2408), + [anon_sym_isize] = ACTIONS(2408), + [anon_sym_usize] = ACTIONS(2408), + [anon_sym_f32] = ACTIONS(2408), + [anon_sym_f64] = ACTIONS(2408), + [anon_sym_bool] = ACTIONS(2408), + [anon_sym_str] = ACTIONS(2408), + [anon_sym_char] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2406), + [anon_sym_DOT_DOT] = ACTIONS(2406), + [anon_sym_COLON_COLON] = ACTIONS(2406), + [anon_sym_POUND] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2408), + [anon_sym_async] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_fn] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_gen] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_impl] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_loop] = ACTIONS(2408), + [anon_sym_match] = ACTIONS(2408), + [anon_sym_mod] = ACTIONS(2408), + [anon_sym_pub] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_trait] = ACTIONS(2408), + [anon_sym_type] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_unsafe] = ACTIONS(2408), + [anon_sym_use] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_yield] = ACTIONS(2408), + [anon_sym_move] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [sym_integer_literal] = ACTIONS(2406), + [aux_sym_string_literal_token1] = ACTIONS(2406), + [sym_char_literal] = ACTIONS(2406), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2408), + [sym_super] = ACTIONS(2408), + [sym_crate] = ACTIONS(2408), + [sym_metavariable] = ACTIONS(2406), + [sym__raw_string_literal_start] = ACTIONS(2406), + [sym_float_literal] = ACTIONS(2406), }, [STATE(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2316), - [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(2410), + [sym_identifier] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_macro_rules_BANG] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_u8] = ACTIONS(2412), + [anon_sym_i8] = ACTIONS(2412), + [anon_sym_u16] = ACTIONS(2412), + [anon_sym_i16] = ACTIONS(2412), + [anon_sym_u32] = ACTIONS(2412), + [anon_sym_i32] = ACTIONS(2412), + [anon_sym_u64] = ACTIONS(2412), + [anon_sym_i64] = ACTIONS(2412), + [anon_sym_u128] = ACTIONS(2412), + [anon_sym_i128] = ACTIONS(2412), + [anon_sym_isize] = ACTIONS(2412), + [anon_sym_usize] = ACTIONS(2412), + [anon_sym_f32] = ACTIONS(2412), + [anon_sym_f64] = ACTIONS(2412), + [anon_sym_bool] = ACTIONS(2412), + [anon_sym_str] = ACTIONS(2412), + [anon_sym_char] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_DOT_DOT] = ACTIONS(2410), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_fn] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_gen] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_impl] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_loop] = ACTIONS(2412), + [anon_sym_match] = ACTIONS(2412), + [anon_sym_mod] = ACTIONS(2412), + [anon_sym_pub] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_trait] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_unsafe] = ACTIONS(2412), + [anon_sym_use] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_yield] = ACTIONS(2412), + [anon_sym_move] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [sym_integer_literal] = ACTIONS(2410), + [aux_sym_string_literal_token1] = ACTIONS(2410), + [sym_char_literal] = ACTIONS(2410), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2412), + [sym_super] = ACTIONS(2412), + [sym_crate] = ACTIONS(2412), + [sym_metavariable] = ACTIONS(2410), + [sym__raw_string_literal_start] = ACTIONS(2410), + [sym_float_literal] = ACTIONS(2410), }, [STATE(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2320), - [sym_identifier] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2320), - [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(2414), + [sym_identifier] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_macro_rules_BANG] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_u8] = ACTIONS(2416), + [anon_sym_i8] = ACTIONS(2416), + [anon_sym_u16] = ACTIONS(2416), + [anon_sym_i16] = ACTIONS(2416), + [anon_sym_u32] = ACTIONS(2416), + [anon_sym_i32] = ACTIONS(2416), + [anon_sym_u64] = ACTIONS(2416), + [anon_sym_i64] = ACTIONS(2416), + [anon_sym_u128] = ACTIONS(2416), + [anon_sym_i128] = ACTIONS(2416), + [anon_sym_isize] = ACTIONS(2416), + [anon_sym_usize] = ACTIONS(2416), + [anon_sym_f32] = ACTIONS(2416), + [anon_sym_f64] = ACTIONS(2416), + [anon_sym_bool] = ACTIONS(2416), + [anon_sym_str] = ACTIONS(2416), + [anon_sym_char] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2414), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2416), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_fn] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_gen] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_impl] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_loop] = ACTIONS(2416), + [anon_sym_match] = ACTIONS(2416), + [anon_sym_mod] = ACTIONS(2416), + [anon_sym_pub] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_trait] = ACTIONS(2416), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(2416), + [anon_sym_use] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_yield] = ACTIONS(2416), + [anon_sym_move] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [sym_integer_literal] = ACTIONS(2414), + [aux_sym_string_literal_token1] = ACTIONS(2414), + [sym_char_literal] = ACTIONS(2414), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2416), + [sym_super] = ACTIONS(2416), + [sym_crate] = ACTIONS(2416), + [sym_metavariable] = ACTIONS(2414), + [sym__raw_string_literal_start] = ACTIONS(2414), + [sym_float_literal] = ACTIONS(2414), }, [STATE(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2324), - [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(2418), + [sym_identifier] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_macro_rules_BANG] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_u8] = ACTIONS(2420), + [anon_sym_i8] = ACTIONS(2420), + [anon_sym_u16] = ACTIONS(2420), + [anon_sym_i16] = ACTIONS(2420), + [anon_sym_u32] = ACTIONS(2420), + [anon_sym_i32] = ACTIONS(2420), + [anon_sym_u64] = ACTIONS(2420), + [anon_sym_i64] = ACTIONS(2420), + [anon_sym_u128] = ACTIONS(2420), + [anon_sym_i128] = ACTIONS(2420), + [anon_sym_isize] = ACTIONS(2420), + [anon_sym_usize] = ACTIONS(2420), + [anon_sym_f32] = ACTIONS(2420), + [anon_sym_f64] = ACTIONS(2420), + [anon_sym_bool] = ACTIONS(2420), + [anon_sym_str] = ACTIONS(2420), + [anon_sym_char] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_COLON_COLON] = ACTIONS(2418), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_fn] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_gen] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_impl] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_loop] = ACTIONS(2420), + [anon_sym_match] = ACTIONS(2420), + [anon_sym_mod] = ACTIONS(2420), + [anon_sym_pub] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_trait] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_unsafe] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_yield] = ACTIONS(2420), + [anon_sym_move] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [sym_integer_literal] = ACTIONS(2418), + [aux_sym_string_literal_token1] = ACTIONS(2418), + [sym_char_literal] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_crate] = ACTIONS(2420), + [sym_metavariable] = ACTIONS(2418), + [sym__raw_string_literal_start] = ACTIONS(2418), + [sym_float_literal] = ACTIONS(2418), }, [STATE(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2328), - [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(2422), + [sym_identifier] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_macro_rules_BANG] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_u8] = ACTIONS(2424), + [anon_sym_i8] = ACTIONS(2424), + [anon_sym_u16] = ACTIONS(2424), + [anon_sym_i16] = ACTIONS(2424), + [anon_sym_u32] = ACTIONS(2424), + [anon_sym_i32] = ACTIONS(2424), + [anon_sym_u64] = ACTIONS(2424), + [anon_sym_i64] = ACTIONS(2424), + [anon_sym_u128] = ACTIONS(2424), + [anon_sym_i128] = ACTIONS(2424), + [anon_sym_isize] = ACTIONS(2424), + [anon_sym_usize] = ACTIONS(2424), + [anon_sym_f32] = ACTIONS(2424), + [anon_sym_f64] = ACTIONS(2424), + [anon_sym_bool] = ACTIONS(2424), + [anon_sym_str] = ACTIONS(2424), + [anon_sym_char] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_DOT_DOT] = ACTIONS(2422), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_fn] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_gen] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_impl] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_loop] = ACTIONS(2424), + [anon_sym_match] = ACTIONS(2424), + [anon_sym_mod] = ACTIONS(2424), + [anon_sym_pub] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_trait] = ACTIONS(2424), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_unsafe] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_yield] = ACTIONS(2424), + [anon_sym_move] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [sym_integer_literal] = ACTIONS(2422), + [aux_sym_string_literal_token1] = ACTIONS(2422), + [sym_char_literal] = ACTIONS(2422), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2424), + [sym_super] = ACTIONS(2424), + [sym_crate] = ACTIONS(2424), + [sym_metavariable] = ACTIONS(2422), + [sym__raw_string_literal_start] = ACTIONS(2422), + [sym_float_literal] = ACTIONS(2422), }, [STATE(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2332), - [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(2426), + [sym_identifier] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_macro_rules_BANG] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_u8] = ACTIONS(2428), + [anon_sym_i8] = ACTIONS(2428), + [anon_sym_u16] = ACTIONS(2428), + [anon_sym_i16] = ACTIONS(2428), + [anon_sym_u32] = ACTIONS(2428), + [anon_sym_i32] = ACTIONS(2428), + [anon_sym_u64] = ACTIONS(2428), + [anon_sym_i64] = ACTIONS(2428), + [anon_sym_u128] = ACTIONS(2428), + [anon_sym_i128] = ACTIONS(2428), + [anon_sym_isize] = ACTIONS(2428), + [anon_sym_usize] = ACTIONS(2428), + [anon_sym_f32] = ACTIONS(2428), + [anon_sym_f64] = ACTIONS(2428), + [anon_sym_bool] = ACTIONS(2428), + [anon_sym_str] = ACTIONS(2428), + [anon_sym_char] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_PIPE] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_DOT_DOT] = ACTIONS(2426), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_POUND] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_fn] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_gen] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_impl] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_loop] = ACTIONS(2428), + [anon_sym_match] = ACTIONS(2428), + [anon_sym_mod] = ACTIONS(2428), + [anon_sym_pub] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_trait] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(2428), + [anon_sym_use] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym_yield] = ACTIONS(2428), + [anon_sym_move] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2426), + [aux_sym_string_literal_token1] = ACTIONS(2426), + [sym_char_literal] = ACTIONS(2426), + [anon_sym_true] = ACTIONS(2428), + [anon_sym_false] = ACTIONS(2428), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_crate] = ACTIONS(2428), + [sym_metavariable] = ACTIONS(2426), + [sym__raw_string_literal_start] = ACTIONS(2426), + [sym_float_literal] = ACTIONS(2426), }, [STATE(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2336), - [sym_identifier] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2336), - [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), + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_macro_rules_BANG] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_u8] = ACTIONS(2432), + [anon_sym_i8] = ACTIONS(2432), + [anon_sym_u16] = ACTIONS(2432), + [anon_sym_i16] = ACTIONS(2432), + [anon_sym_u32] = ACTIONS(2432), + [anon_sym_i32] = ACTIONS(2432), + [anon_sym_u64] = ACTIONS(2432), + [anon_sym_i64] = ACTIONS(2432), + [anon_sym_u128] = ACTIONS(2432), + [anon_sym_i128] = ACTIONS(2432), + [anon_sym_isize] = ACTIONS(2432), + [anon_sym_usize] = ACTIONS(2432), + [anon_sym_f32] = ACTIONS(2432), + [anon_sym_f64] = ACTIONS(2432), + [anon_sym_bool] = ACTIONS(2432), + [anon_sym_str] = ACTIONS(2432), + [anon_sym_char] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_DOT_DOT] = ACTIONS(2430), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_fn] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_gen] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_impl] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_loop] = ACTIONS(2432), + [anon_sym_match] = ACTIONS(2432), + [anon_sym_mod] = ACTIONS(2432), + [anon_sym_pub] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_trait] = ACTIONS(2432), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_unsafe] = ACTIONS(2432), + [anon_sym_use] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym_yield] = ACTIONS(2432), + [anon_sym_move] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [sym_integer_literal] = ACTIONS(2430), + [aux_sym_string_literal_token1] = ACTIONS(2430), + [sym_char_literal] = ACTIONS(2430), + [anon_sym_true] = ACTIONS(2432), + [anon_sym_false] = ACTIONS(2432), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2432), + [sym_super] = ACTIONS(2432), + [sym_crate] = ACTIONS(2432), + [sym_metavariable] = ACTIONS(2430), + [sym__raw_string_literal_start] = ACTIONS(2430), + [sym_float_literal] = ACTIONS(2430), }, [STATE(627)] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2340), - [sym_identifier] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2340), - [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(2434), + [sym_identifier] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_macro_rules_BANG] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_u8] = ACTIONS(2436), + [anon_sym_i8] = ACTIONS(2436), + [anon_sym_u16] = ACTIONS(2436), + [anon_sym_i16] = ACTIONS(2436), + [anon_sym_u32] = ACTIONS(2436), + [anon_sym_i32] = ACTIONS(2436), + [anon_sym_u64] = ACTIONS(2436), + [anon_sym_i64] = ACTIONS(2436), + [anon_sym_u128] = ACTIONS(2436), + [anon_sym_i128] = ACTIONS(2436), + [anon_sym_isize] = ACTIONS(2436), + [anon_sym_usize] = ACTIONS(2436), + [anon_sym_f32] = ACTIONS(2436), + [anon_sym_f64] = ACTIONS(2436), + [anon_sym_bool] = ACTIONS(2436), + [anon_sym_str] = ACTIONS(2436), + [anon_sym_char] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_DOT_DOT] = ACTIONS(2434), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_POUND] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_fn] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_gen] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_impl] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_loop] = ACTIONS(2436), + [anon_sym_match] = ACTIONS(2436), + [anon_sym_mod] = ACTIONS(2436), + [anon_sym_pub] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_trait] = ACTIONS(2436), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_unsafe] = ACTIONS(2436), + [anon_sym_use] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_yield] = ACTIONS(2436), + [anon_sym_move] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [sym_integer_literal] = ACTIONS(2434), + [aux_sym_string_literal_token1] = ACTIONS(2434), + [sym_char_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2436), + [sym_super] = ACTIONS(2436), + [sym_crate] = ACTIONS(2436), + [sym_metavariable] = ACTIONS(2434), + [sym__raw_string_literal_start] = ACTIONS(2434), + [sym_float_literal] = ACTIONS(2434), }, [STATE(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2346), - [anon_sym_SEMI] = ACTIONS(2344), - [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(2438), + [sym_identifier] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_macro_rules_BANG] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_u8] = ACTIONS(2440), + [anon_sym_i8] = ACTIONS(2440), + [anon_sym_u16] = ACTIONS(2440), + [anon_sym_i16] = ACTIONS(2440), + [anon_sym_u32] = ACTIONS(2440), + [anon_sym_i32] = ACTIONS(2440), + [anon_sym_u64] = ACTIONS(2440), + [anon_sym_i64] = ACTIONS(2440), + [anon_sym_u128] = ACTIONS(2440), + [anon_sym_i128] = ACTIONS(2440), + [anon_sym_isize] = ACTIONS(2440), + [anon_sym_usize] = ACTIONS(2440), + [anon_sym_f32] = ACTIONS(2440), + [anon_sym_f64] = ACTIONS(2440), + [anon_sym_bool] = ACTIONS(2440), + [anon_sym_str] = ACTIONS(2440), + [anon_sym_char] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(2438), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_fn] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_gen] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_impl] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_loop] = ACTIONS(2440), + [anon_sym_match] = ACTIONS(2440), + [anon_sym_mod] = ACTIONS(2440), + [anon_sym_pub] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_trait] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_unsafe] = ACTIONS(2440), + [anon_sym_use] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_move] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [sym_integer_literal] = ACTIONS(2438), + [aux_sym_string_literal_token1] = ACTIONS(2438), + [sym_char_literal] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_crate] = ACTIONS(2440), + [sym_metavariable] = ACTIONS(2438), + [sym__raw_string_literal_start] = ACTIONS(2438), + [sym_float_literal] = ACTIONS(2438), }, [STATE(629)] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2348), - [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(2442), + [sym_identifier] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_macro_rules_BANG] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_u8] = ACTIONS(2444), + [anon_sym_i8] = ACTIONS(2444), + [anon_sym_u16] = ACTIONS(2444), + [anon_sym_i16] = ACTIONS(2444), + [anon_sym_u32] = ACTIONS(2444), + [anon_sym_i32] = ACTIONS(2444), + [anon_sym_u64] = ACTIONS(2444), + [anon_sym_i64] = ACTIONS(2444), + [anon_sym_u128] = ACTIONS(2444), + [anon_sym_i128] = ACTIONS(2444), + [anon_sym_isize] = ACTIONS(2444), + [anon_sym_usize] = ACTIONS(2444), + [anon_sym_f32] = ACTIONS(2444), + [anon_sym_f64] = ACTIONS(2444), + [anon_sym_bool] = ACTIONS(2444), + [anon_sym_str] = ACTIONS(2444), + [anon_sym_char] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_DOT_DOT] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2444), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_fn] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_gen] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_impl] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_loop] = ACTIONS(2444), + [anon_sym_match] = ACTIONS(2444), + [anon_sym_mod] = ACTIONS(2444), + [anon_sym_pub] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_trait] = ACTIONS(2444), + [anon_sym_type] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [anon_sym_unsafe] = ACTIONS(2444), + [anon_sym_use] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_yield] = ACTIONS(2444), + [anon_sym_move] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [sym_integer_literal] = ACTIONS(2442), + [aux_sym_string_literal_token1] = ACTIONS(2442), + [sym_char_literal] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2444), + [sym_super] = ACTIONS(2444), + [sym_crate] = ACTIONS(2444), + [sym_metavariable] = ACTIONS(2442), + [sym__raw_string_literal_start] = ACTIONS(2442), + [sym_float_literal] = ACTIONS(2442), }, [STATE(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2352), - [sym_identifier] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2352), - [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(2446), + [sym_identifier] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym_macro_rules_BANG] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_u8] = ACTIONS(2448), + [anon_sym_i8] = ACTIONS(2448), + [anon_sym_u16] = ACTIONS(2448), + [anon_sym_i16] = ACTIONS(2448), + [anon_sym_u32] = ACTIONS(2448), + [anon_sym_i32] = ACTIONS(2448), + [anon_sym_u64] = ACTIONS(2448), + [anon_sym_i64] = ACTIONS(2448), + [anon_sym_u128] = ACTIONS(2448), + [anon_sym_i128] = ACTIONS(2448), + [anon_sym_isize] = ACTIONS(2448), + [anon_sym_usize] = ACTIONS(2448), + [anon_sym_f32] = ACTIONS(2448), + [anon_sym_f64] = ACTIONS(2448), + [anon_sym_bool] = ACTIONS(2448), + [anon_sym_str] = ACTIONS(2448), + [anon_sym_char] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_DOT_DOT] = ACTIONS(2446), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [anon_sym_fn] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_gen] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_impl] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_mod] = ACTIONS(2448), + [anon_sym_pub] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2448), + [anon_sym_trait] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_union] = ACTIONS(2448), + [anon_sym_unsafe] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_move] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [sym_integer_literal] = ACTIONS(2446), + [aux_sym_string_literal_token1] = ACTIONS(2446), + [sym_char_literal] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_crate] = ACTIONS(2448), + [sym_metavariable] = ACTIONS(2446), + [sym__raw_string_literal_start] = ACTIONS(2446), + [sym_float_literal] = ACTIONS(2446), }, [STATE(631)] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2356), - [sym_identifier] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2356), - [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(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_macro_rules_BANG] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_u8] = ACTIONS(2452), + [anon_sym_i8] = ACTIONS(2452), + [anon_sym_u16] = ACTIONS(2452), + [anon_sym_i16] = ACTIONS(2452), + [anon_sym_u32] = ACTIONS(2452), + [anon_sym_i32] = ACTIONS(2452), + [anon_sym_u64] = ACTIONS(2452), + [anon_sym_i64] = ACTIONS(2452), + [anon_sym_u128] = ACTIONS(2452), + [anon_sym_i128] = ACTIONS(2452), + [anon_sym_isize] = ACTIONS(2452), + [anon_sym_usize] = ACTIONS(2452), + [anon_sym_f32] = ACTIONS(2452), + [anon_sym_f64] = ACTIONS(2452), + [anon_sym_bool] = ACTIONS(2452), + [anon_sym_str] = ACTIONS(2452), + [anon_sym_char] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_DOT_DOT] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [anon_sym_fn] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_gen] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_impl] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_loop] = ACTIONS(2452), + [anon_sym_match] = ACTIONS(2452), + [anon_sym_mod] = ACTIONS(2452), + [anon_sym_pub] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_struct] = ACTIONS(2452), + [anon_sym_trait] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_union] = ACTIONS(2452), + [anon_sym_unsafe] = ACTIONS(2452), + [anon_sym_use] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_extern] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_move] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [sym_integer_literal] = ACTIONS(2450), + [aux_sym_string_literal_token1] = ACTIONS(2450), + [sym_char_literal] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_crate] = ACTIONS(2452), + [sym_metavariable] = ACTIONS(2450), + [sym__raw_string_literal_start] = ACTIONS(2450), + [sym_float_literal] = ACTIONS(2450), }, [STATE(632)] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2360), - [sym_identifier] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2360), - [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(2454), + [sym_identifier] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_macro_rules_BANG] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_u8] = ACTIONS(2456), + [anon_sym_i8] = ACTIONS(2456), + [anon_sym_u16] = ACTIONS(2456), + [anon_sym_i16] = ACTIONS(2456), + [anon_sym_u32] = ACTIONS(2456), + [anon_sym_i32] = ACTIONS(2456), + [anon_sym_u64] = ACTIONS(2456), + [anon_sym_i64] = ACTIONS(2456), + [anon_sym_u128] = ACTIONS(2456), + [anon_sym_i128] = ACTIONS(2456), + [anon_sym_isize] = ACTIONS(2456), + [anon_sym_usize] = ACTIONS(2456), + [anon_sym_f32] = ACTIONS(2456), + [anon_sym_f64] = ACTIONS(2456), + [anon_sym_bool] = ACTIONS(2456), + [anon_sym_str] = ACTIONS(2456), + [anon_sym_char] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_DOT_DOT] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [anon_sym_fn] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_gen] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_impl] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_loop] = ACTIONS(2456), + [anon_sym_match] = ACTIONS(2456), + [anon_sym_mod] = ACTIONS(2456), + [anon_sym_pub] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_struct] = ACTIONS(2456), + [anon_sym_trait] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_union] = ACTIONS(2456), + [anon_sym_unsafe] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_move] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [sym_integer_literal] = ACTIONS(2454), + [aux_sym_string_literal_token1] = ACTIONS(2454), + [sym_char_literal] = ACTIONS(2454), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_crate] = ACTIONS(2456), + [sym_metavariable] = ACTIONS(2454), + [sym__raw_string_literal_start] = ACTIONS(2454), + [sym_float_literal] = ACTIONS(2454), }, [STATE(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2366), - [anon_sym_SEMI] = ACTIONS(2364), - [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(2458), + [sym_identifier] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_macro_rules_BANG] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_u8] = ACTIONS(2460), + [anon_sym_i8] = ACTIONS(2460), + [anon_sym_u16] = ACTIONS(2460), + [anon_sym_i16] = ACTIONS(2460), + [anon_sym_u32] = ACTIONS(2460), + [anon_sym_i32] = ACTIONS(2460), + [anon_sym_u64] = ACTIONS(2460), + [anon_sym_i64] = ACTIONS(2460), + [anon_sym_u128] = ACTIONS(2460), + [anon_sym_i128] = ACTIONS(2460), + [anon_sym_isize] = ACTIONS(2460), + [anon_sym_usize] = ACTIONS(2460), + [anon_sym_f32] = ACTIONS(2460), + [anon_sym_f64] = ACTIONS(2460), + [anon_sym_bool] = ACTIONS(2460), + [anon_sym_str] = ACTIONS(2460), + [anon_sym_char] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_DOT_DOT] = ACTIONS(2458), + [anon_sym_COLON_COLON] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_async] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_default] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + [anon_sym_fn] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_gen] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_impl] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_loop] = ACTIONS(2460), + [anon_sym_match] = ACTIONS(2460), + [anon_sym_mod] = ACTIONS(2460), + [anon_sym_pub] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_struct] = ACTIONS(2460), + [anon_sym_trait] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2460), + [anon_sym_union] = ACTIONS(2460), + [anon_sym_unsafe] = ACTIONS(2460), + [anon_sym_use] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_extern] = ACTIONS(2460), + [anon_sym_yield] = ACTIONS(2460), + [anon_sym_move] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2460), + [sym_integer_literal] = ACTIONS(2458), + [aux_sym_string_literal_token1] = ACTIONS(2458), + [sym_char_literal] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2460), + [sym_super] = ACTIONS(2460), + [sym_crate] = ACTIONS(2460), + [sym_metavariable] = ACTIONS(2458), + [sym__raw_string_literal_start] = ACTIONS(2458), + [sym_float_literal] = ACTIONS(2458), }, [STATE(634)] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2368), - [sym_identifier] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2368), - [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(2462), + [sym_identifier] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_macro_rules_BANG] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_u8] = ACTIONS(2464), + [anon_sym_i8] = ACTIONS(2464), + [anon_sym_u16] = ACTIONS(2464), + [anon_sym_i16] = ACTIONS(2464), + [anon_sym_u32] = ACTIONS(2464), + [anon_sym_i32] = ACTIONS(2464), + [anon_sym_u64] = ACTIONS(2464), + [anon_sym_i64] = ACTIONS(2464), + [anon_sym_u128] = ACTIONS(2464), + [anon_sym_i128] = ACTIONS(2464), + [anon_sym_isize] = ACTIONS(2464), + [anon_sym_usize] = ACTIONS(2464), + [anon_sym_f32] = ACTIONS(2464), + [anon_sym_f64] = ACTIONS(2464), + [anon_sym_bool] = ACTIONS(2464), + [anon_sym_str] = ACTIONS(2464), + [anon_sym_char] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_DOT_DOT] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_fn] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_gen] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_impl] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_loop] = ACTIONS(2464), + [anon_sym_match] = ACTIONS(2464), + [anon_sym_mod] = ACTIONS(2464), + [anon_sym_pub] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [anon_sym_trait] = ACTIONS(2464), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_unsafe] = ACTIONS(2464), + [anon_sym_use] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_yield] = ACTIONS(2464), + [anon_sym_move] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2464), + [sym_integer_literal] = ACTIONS(2462), + [aux_sym_string_literal_token1] = ACTIONS(2462), + [sym_char_literal] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2464), + [sym_super] = ACTIONS(2464), + [sym_crate] = ACTIONS(2464), + [sym_metavariable] = ACTIONS(2462), + [sym__raw_string_literal_start] = ACTIONS(2462), + [sym_float_literal] = ACTIONS(2462), }, [STATE(635)] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2372), - [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(2466), + [sym_identifier] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_macro_rules_BANG] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_u8] = ACTIONS(2468), + [anon_sym_i8] = ACTIONS(2468), + [anon_sym_u16] = ACTIONS(2468), + [anon_sym_i16] = ACTIONS(2468), + [anon_sym_u32] = ACTIONS(2468), + [anon_sym_i32] = ACTIONS(2468), + [anon_sym_u64] = ACTIONS(2468), + [anon_sym_i64] = ACTIONS(2468), + [anon_sym_u128] = ACTIONS(2468), + [anon_sym_i128] = ACTIONS(2468), + [anon_sym_isize] = ACTIONS(2468), + [anon_sym_usize] = ACTIONS(2468), + [anon_sym_f32] = ACTIONS(2468), + [anon_sym_f64] = ACTIONS(2468), + [anon_sym_bool] = ACTIONS(2468), + [anon_sym_str] = ACTIONS(2468), + [anon_sym_char] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_DOT_DOT] = ACTIONS(2466), + [anon_sym_COLON_COLON] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_async] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_fn] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_gen] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_impl] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_mod] = ACTIONS(2468), + [anon_sym_pub] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_trait] = ACTIONS(2468), + [anon_sym_type] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2468), + [anon_sym_unsafe] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_yield] = ACTIONS(2468), + [anon_sym_move] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [sym_integer_literal] = ACTIONS(2466), + [aux_sym_string_literal_token1] = ACTIONS(2466), + [sym_char_literal] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2468), + [sym_super] = ACTIONS(2468), + [sym_crate] = ACTIONS(2468), + [sym_metavariable] = ACTIONS(2466), + [sym__raw_string_literal_start] = ACTIONS(2466), + [sym_float_literal] = ACTIONS(2466), }, [STATE(636)] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2378), - [anon_sym_SEMI] = ACTIONS(2376), - [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(2470), + [sym_identifier] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_macro_rules_BANG] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_u8] = ACTIONS(2472), + [anon_sym_i8] = ACTIONS(2472), + [anon_sym_u16] = ACTIONS(2472), + [anon_sym_i16] = ACTIONS(2472), + [anon_sym_u32] = ACTIONS(2472), + [anon_sym_i32] = ACTIONS(2472), + [anon_sym_u64] = ACTIONS(2472), + [anon_sym_i64] = ACTIONS(2472), + [anon_sym_u128] = ACTIONS(2472), + [anon_sym_i128] = ACTIONS(2472), + [anon_sym_isize] = ACTIONS(2472), + [anon_sym_usize] = ACTIONS(2472), + [anon_sym_f32] = ACTIONS(2472), + [anon_sym_f64] = ACTIONS(2472), + [anon_sym_bool] = ACTIONS(2472), + [anon_sym_str] = ACTIONS(2472), + [anon_sym_char] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_DOT_DOT] = ACTIONS(2470), + [anon_sym_COLON_COLON] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_async] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2472), + [anon_sym_enum] = ACTIONS(2472), + [anon_sym_fn] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_gen] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_impl] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_loop] = ACTIONS(2472), + [anon_sym_match] = ACTIONS(2472), + [anon_sym_mod] = ACTIONS(2472), + [anon_sym_pub] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(2472), + [anon_sym_trait] = ACTIONS(2472), + [anon_sym_type] = ACTIONS(2472), + [anon_sym_union] = ACTIONS(2472), + [anon_sym_unsafe] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2472), + [anon_sym_move] = ACTIONS(2472), + [anon_sym_try] = ACTIONS(2472), + [sym_integer_literal] = ACTIONS(2470), + [aux_sym_string_literal_token1] = ACTIONS(2470), + [sym_char_literal] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2472), + [sym_super] = ACTIONS(2472), + [sym_crate] = ACTIONS(2472), + [sym_metavariable] = ACTIONS(2470), + [sym__raw_string_literal_start] = ACTIONS(2470), + [sym_float_literal] = ACTIONS(2470), }, [STATE(637)] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2380), - [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), - }, - [STATE(638)] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2384), - [sym_identifier] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2384), - [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), - }, - [STATE(639)] = { - [sym_empty_statement] = STATE(1305), - [sym_macro_definition] = STATE(1305), - [sym_attribute_item] = STATE(1305), - [sym_inner_attribute_item] = STATE(1305), - [sym_mod_item] = STATE(1305), - [sym_foreign_mod_item] = STATE(1305), - [sym_struct_item] = STATE(1305), - [sym_union_item] = STATE(1305), - [sym_enum_item] = STATE(1305), - [sym_extern_crate_declaration] = STATE(1305), - [sym_const_item] = STATE(1305), - [sym_static_item] = STATE(1305), - [sym_type_item] = STATE(1305), - [sym_function_item] = STATE(1305), - [sym_function_signature_item] = STATE(1305), - [sym_function_modifiers] = STATE(3747), - [sym_impl_item] = STATE(1305), - [sym_trait_item] = STATE(1305), - [sym_associated_type] = STATE(1305), - [sym_let_declaration] = STATE(1305), - [sym_use_declaration] = STATE(1305), - [sym_extern_modifier] = STATE(2250), - [sym_visibility_modifier] = STATE(2009), - [sym_bracketed_type] = STATE(3696), - [sym_generic_type_with_turbofish] = STATE(3770), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(3191), - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(2388), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_macro_rules_BANG] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_u8] = ACTIONS(2399), - [anon_sym_i8] = ACTIONS(2399), - [anon_sym_u16] = ACTIONS(2399), - [anon_sym_i16] = ACTIONS(2399), - [anon_sym_u32] = ACTIONS(2399), - [anon_sym_i32] = ACTIONS(2399), - [anon_sym_u64] = ACTIONS(2399), - [anon_sym_i64] = ACTIONS(2399), - [anon_sym_u128] = ACTIONS(2399), - [anon_sym_i128] = ACTIONS(2399), - [anon_sym_isize] = ACTIONS(2399), - [anon_sym_usize] = ACTIONS(2399), - [anon_sym_f32] = ACTIONS(2399), - [anon_sym_f64] = ACTIONS(2399), - [anon_sym_bool] = ACTIONS(2399), - [anon_sym_str] = ACTIONS(2399), - [anon_sym_char] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_COLON_COLON] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2408), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2420), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_gen] = ACTIONS(2426), - [anon_sym_impl] = ACTIONS(2429), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_mod] = ACTIONS(2435), - [anon_sym_pub] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2444), - [anon_sym_trait] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2453), - [anon_sym_unsafe] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2465), - [sym_super] = ACTIONS(2465), - [sym_crate] = ACTIONS(2468), - [sym_metavariable] = ACTIONS(2471), - }, - [STATE(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2474), [sym_identifier] = ACTIONS(2476), [anon_sym_SEMI] = ACTIONS(2474), @@ -83311,9 +83320,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2474), [sym_float_literal] = ACTIONS(2474), }, - [STATE(641)] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2478), [sym_identifier] = ACTIONS(2480), [anon_sym_SEMI] = ACTIONS(2478), @@ -83392,9 +83401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2478), [sym_float_literal] = ACTIONS(2478), }, - [STATE(642)] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2482), [sym_identifier] = ACTIONS(2484), [anon_sym_SEMI] = ACTIONS(2482), @@ -83473,9 +83482,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2482), [sym_float_literal] = ACTIONS(2482), }, - [STATE(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2486), [sym_identifier] = ACTIONS(2488), [anon_sym_SEMI] = ACTIONS(2486), @@ -83554,9 +83563,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2486), [sym_float_literal] = ACTIONS(2486), }, - [STATE(644)] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2490), [sym_identifier] = ACTIONS(2492), [anon_sym_SEMI] = ACTIONS(2490), @@ -83635,9 +83644,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2490), [sym_float_literal] = ACTIONS(2490), }, - [STATE(645)] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2494), [sym_identifier] = ACTIONS(2496), [anon_sym_SEMI] = ACTIONS(2494), @@ -83716,9 +83725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2494), [sym_float_literal] = ACTIONS(2494), }, - [STATE(646)] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2498), [sym_identifier] = ACTIONS(2500), [anon_sym_SEMI] = ACTIONS(2498), @@ -83797,333 +83806,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2498), [sym_float_literal] = ACTIONS(2498), }, + [STATE(644)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_pattern] = STATE(3708), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), + [aux_sym_match_arm_repeat1] = STATE(1077), + [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(645)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [aux_sym_declaration_list_repeat1] = STATE(651), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2138), + }, + [STATE(646)] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(2504), + [sym_identifier] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_macro_rules_BANG] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_u8] = ACTIONS(2506), + [anon_sym_i8] = ACTIONS(2506), + [anon_sym_u16] = ACTIONS(2506), + [anon_sym_i16] = ACTIONS(2506), + [anon_sym_u32] = ACTIONS(2506), + [anon_sym_i32] = ACTIONS(2506), + [anon_sym_u64] = ACTIONS(2506), + [anon_sym_i64] = ACTIONS(2506), + [anon_sym_u128] = ACTIONS(2506), + [anon_sym_i128] = ACTIONS(2506), + [anon_sym_isize] = ACTIONS(2506), + [anon_sym_usize] = ACTIONS(2506), + [anon_sym_f32] = ACTIONS(2506), + [anon_sym_f64] = ACTIONS(2506), + [anon_sym_bool] = ACTIONS(2506), + [anon_sym_str] = ACTIONS(2506), + [anon_sym_char] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_DOT_DOT] = ACTIONS(2504), + [anon_sym_COLON_COLON] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2506), + [anon_sym_async] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_default] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [anon_sym_fn] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_gen] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_impl] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_loop] = ACTIONS(2506), + [anon_sym_match] = ACTIONS(2506), + [anon_sym_mod] = ACTIONS(2506), + [anon_sym_pub] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_struct] = ACTIONS(2506), + [anon_sym_trait] = ACTIONS(2506), + [anon_sym_type] = ACTIONS(2506), + [anon_sym_union] = ACTIONS(2506), + [anon_sym_unsafe] = ACTIONS(2506), + [anon_sym_use] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_yield] = ACTIONS(2506), + [anon_sym_move] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2506), + [sym_integer_literal] = ACTIONS(2504), + [aux_sym_string_literal_token1] = ACTIONS(2504), + [sym_char_literal] = ACTIONS(2504), + [anon_sym_true] = ACTIONS(2506), + [anon_sym_false] = ACTIONS(2506), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2506), + [sym_super] = ACTIONS(2506), + [sym_crate] = ACTIONS(2506), + [sym_metavariable] = ACTIONS(2504), + [sym__raw_string_literal_start] = ACTIONS(2504), + [sym_float_literal] = ACTIONS(2504), + }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_macro_rules_BANG] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_u8] = ACTIONS(2504), - [anon_sym_i8] = ACTIONS(2504), - [anon_sym_u16] = ACTIONS(2504), - [anon_sym_i16] = ACTIONS(2504), - [anon_sym_u32] = ACTIONS(2504), - [anon_sym_i32] = ACTIONS(2504), - [anon_sym_u64] = ACTIONS(2504), - [anon_sym_i64] = ACTIONS(2504), - [anon_sym_u128] = ACTIONS(2504), - [anon_sym_i128] = ACTIONS(2504), - [anon_sym_isize] = ACTIONS(2504), - [anon_sym_usize] = ACTIONS(2504), - [anon_sym_f32] = ACTIONS(2504), - [anon_sym_f64] = ACTIONS(2504), - [anon_sym_bool] = ACTIONS(2504), - [anon_sym_str] = ACTIONS(2504), - [anon_sym_char] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_DOT_DOT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_fn] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_gen] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_impl] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_mod] = ACTIONS(2504), - [anon_sym_pub] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_trait] = ACTIONS(2504), - [anon_sym_type] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_unsafe] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_yield] = ACTIONS(2504), - [anon_sym_move] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [sym_integer_literal] = ACTIONS(2502), - [aux_sym_string_literal_token1] = ACTIONS(2502), - [sym_char_literal] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2504), - [sym_super] = ACTIONS(2504), - [sym_crate] = ACTIONS(2504), - [sym_metavariable] = ACTIONS(2502), - [sym__raw_string_literal_start] = ACTIONS(2502), - [sym_float_literal] = ACTIONS(2502), + [ts_builtin_sym_end] = ACTIONS(2508), + [sym_identifier] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_macro_rules_BANG] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_u8] = ACTIONS(2510), + [anon_sym_i8] = ACTIONS(2510), + [anon_sym_u16] = ACTIONS(2510), + [anon_sym_i16] = ACTIONS(2510), + [anon_sym_u32] = ACTIONS(2510), + [anon_sym_i32] = ACTIONS(2510), + [anon_sym_u64] = ACTIONS(2510), + [anon_sym_i64] = ACTIONS(2510), + [anon_sym_u128] = ACTIONS(2510), + [anon_sym_i128] = ACTIONS(2510), + [anon_sym_isize] = ACTIONS(2510), + [anon_sym_usize] = ACTIONS(2510), + [anon_sym_f32] = ACTIONS(2510), + [anon_sym_f64] = ACTIONS(2510), + [anon_sym_bool] = ACTIONS(2510), + [anon_sym_str] = ACTIONS(2510), + [anon_sym_char] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_DOT_DOT] = ACTIONS(2508), + [anon_sym_COLON_COLON] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_async] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_default] = ACTIONS(2510), + [anon_sym_enum] = ACTIONS(2510), + [anon_sym_fn] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_gen] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_impl] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_loop] = ACTIONS(2510), + [anon_sym_match] = ACTIONS(2510), + [anon_sym_mod] = ACTIONS(2510), + [anon_sym_pub] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_struct] = ACTIONS(2510), + [anon_sym_trait] = ACTIONS(2510), + [anon_sym_type] = ACTIONS(2510), + [anon_sym_union] = ACTIONS(2510), + [anon_sym_unsafe] = ACTIONS(2510), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_yield] = ACTIONS(2510), + [anon_sym_move] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2510), + [sym_integer_literal] = ACTIONS(2508), + [aux_sym_string_literal_token1] = ACTIONS(2508), + [sym_char_literal] = ACTIONS(2508), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2510), + [sym_super] = ACTIONS(2510), + [sym_crate] = ACTIONS(2510), + [sym_metavariable] = ACTIONS(2508), + [sym__raw_string_literal_start] = ACTIONS(2508), + [sym_float_literal] = ACTIONS(2508), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_macro_rules_BANG] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_u8] = ACTIONS(2508), - [anon_sym_i8] = ACTIONS(2508), - [anon_sym_u16] = ACTIONS(2508), - [anon_sym_i16] = ACTIONS(2508), - [anon_sym_u32] = ACTIONS(2508), - [anon_sym_i32] = ACTIONS(2508), - [anon_sym_u64] = ACTIONS(2508), - [anon_sym_i64] = ACTIONS(2508), - [anon_sym_u128] = ACTIONS(2508), - [anon_sym_i128] = ACTIONS(2508), - [anon_sym_isize] = ACTIONS(2508), - [anon_sym_usize] = ACTIONS(2508), - [anon_sym_f32] = ACTIONS(2508), - [anon_sym_f64] = ACTIONS(2508), - [anon_sym_bool] = ACTIONS(2508), - [anon_sym_str] = ACTIONS(2508), - [anon_sym_char] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_DOT_DOT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [anon_sym_fn] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_gen] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_impl] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_mod] = ACTIONS(2508), - [anon_sym_pub] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_trait] = ACTIONS(2508), - [anon_sym_type] = ACTIONS(2508), - [anon_sym_union] = ACTIONS(2508), - [anon_sym_unsafe] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_move] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [sym_integer_literal] = ACTIONS(2506), - [aux_sym_string_literal_token1] = ACTIONS(2506), - [sym_char_literal] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2508), - [sym_super] = ACTIONS(2508), - [sym_crate] = ACTIONS(2508), - [sym_metavariable] = ACTIONS(2506), - [sym__raw_string_literal_start] = ACTIONS(2506), - [sym_float_literal] = ACTIONS(2506), - }, - [STATE(649)] = { - [sym_line_comment] = STATE(649), - [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_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(3391), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2947), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(651)] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), [ts_builtin_sym_end] = ACTIONS(2512), [sym_identifier] = ACTIONS(2514), [anon_sym_SEMI] = ACTIONS(2512), @@ -84202,9 +84211,9 @@ 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(652)] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [STATE(649)] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), [ts_builtin_sym_end] = ACTIONS(2516), [sym_identifier] = ACTIONS(2518), [anon_sym_SEMI] = ACTIONS(2516), @@ -84283,90 +84292,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2516), [sym_float_literal] = ACTIONS(2516), }, - [STATE(653)] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_try] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(654)] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [STATE(650)] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), [ts_builtin_sym_end] = ACTIONS(2520), [sym_identifier] = ACTIONS(2522), [anon_sym_SEMI] = ACTIONS(2520), @@ -84445,123 +84373,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2520), [sym_float_literal] = ACTIONS(2520), }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2524), - [sym_identifier] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_macro_rules_BANG] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2524), + [STATE(651)] = { + [sym_empty_statement] = STATE(1170), + [sym_macro_definition] = STATE(1170), + [sym_attribute_item] = STATE(1170), + [sym_inner_attribute_item] = STATE(1170), + [sym_mod_item] = STATE(1170), + [sym_foreign_mod_item] = STATE(1170), + [sym_struct_item] = STATE(1170), + [sym_union_item] = STATE(1170), + [sym_enum_item] = STATE(1170), + [sym_extern_crate_declaration] = STATE(1170), + [sym_const_item] = STATE(1170), + [sym_static_item] = STATE(1170), + [sym_type_item] = STATE(1170), + [sym_function_item] = STATE(1170), + [sym_function_signature_item] = STATE(1170), + [sym_function_modifiers] = STATE(3781), + [sym_impl_item] = STATE(1170), + [sym_trait_item] = STATE(1170), + [sym_associated_type] = STATE(1170), + [sym_let_declaration] = STATE(1170), + [sym_use_declaration] = STATE(1170), + [sym_extern_modifier] = STATE(2235), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3732), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(3326), + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [aux_sym_declaration_list_repeat1] = STATE(531), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_u8] = ACTIONS(2526), - [anon_sym_i8] = ACTIONS(2526), - [anon_sym_u16] = ACTIONS(2526), - [anon_sym_i16] = ACTIONS(2526), - [anon_sym_u32] = ACTIONS(2526), - [anon_sym_i32] = ACTIONS(2526), - [anon_sym_u64] = ACTIONS(2526), - [anon_sym_i64] = ACTIONS(2526), - [anon_sym_u128] = ACTIONS(2526), - [anon_sym_i128] = ACTIONS(2526), - [anon_sym_isize] = ACTIONS(2526), - [anon_sym_usize] = ACTIONS(2526), - [anon_sym_f32] = ACTIONS(2526), - [anon_sym_f64] = ACTIONS(2526), - [anon_sym_bool] = ACTIONS(2526), - [anon_sym_str] = ACTIONS(2526), - [anon_sym_char] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_DOT_DOT] = ACTIONS(2524), - [anon_sym_COLON_COLON] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_fn] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_gen] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_impl] = ACTIONS(2526), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_loop] = ACTIONS(2526), - [anon_sym_match] = ACTIONS(2526), - [anon_sym_mod] = ACTIONS(2526), - [anon_sym_pub] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_trait] = ACTIONS(2526), - [anon_sym_type] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_unsafe] = ACTIONS(2526), - [anon_sym_use] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2526), - [anon_sym_move] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [sym_integer_literal] = ACTIONS(2524), - [aux_sym_string_literal_token1] = ACTIONS(2524), - [sym_char_literal] = ACTIONS(2524), - [anon_sym_true] = ACTIONS(2526), - [anon_sym_false] = ACTIONS(2526), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2526), - [sym_super] = ACTIONS(2526), - [sym_crate] = ACTIONS(2526), - [sym_metavariable] = ACTIONS(2524), - [sym__raw_string_literal_start] = ACTIONS(2524), - [sym_float_literal] = ACTIONS(2524), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2138), }, - [STATE(656)] = { - [sym_empty_statement] = STATE(1305), - [sym_macro_definition] = STATE(1305), - [sym_attribute_item] = STATE(1305), - [sym_inner_attribute_item] = STATE(1305), - [sym_mod_item] = STATE(1305), - [sym_foreign_mod_item] = STATE(1305), - [sym_struct_item] = STATE(1305), - [sym_union_item] = STATE(1305), - [sym_enum_item] = STATE(1305), - [sym_extern_crate_declaration] = STATE(1305), - [sym_const_item] = STATE(1305), - [sym_static_item] = STATE(1305), - [sym_type_item] = STATE(1305), - [sym_function_item] = STATE(1305), - [sym_function_signature_item] = STATE(1305), - [sym_function_modifiers] = STATE(3747), - [sym_impl_item] = STATE(1305), - [sym_trait_item] = STATE(1305), - [sym_associated_type] = STATE(1305), - [sym_let_declaration] = STATE(1305), - [sym_use_declaration] = STATE(1305), - [sym_extern_modifier] = STATE(2250), - [sym_visibility_modifier] = STATE(2009), - [sym_bracketed_type] = STATE(3696), - [sym_generic_type_with_turbofish] = STATE(3770), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(3191), - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [aux_sym_declaration_list_repeat1] = STATE(748), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [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_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(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2532), + [anon_sym_macro_rules_BANG] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_u8] = ACTIONS(2532), + [anon_sym_i8] = ACTIONS(2532), + [anon_sym_u16] = ACTIONS(2532), + [anon_sym_i16] = ACTIONS(2532), + [anon_sym_u32] = ACTIONS(2532), + [anon_sym_i32] = ACTIONS(2532), + [anon_sym_u64] = ACTIONS(2532), + [anon_sym_i64] = ACTIONS(2532), + [anon_sym_u128] = ACTIONS(2532), + [anon_sym_i128] = ACTIONS(2532), + [anon_sym_isize] = ACTIONS(2532), + [anon_sym_usize] = ACTIONS(2532), + [anon_sym_f32] = ACTIONS(2532), + [anon_sym_f64] = ACTIONS(2532), + [anon_sym_bool] = ACTIONS(2532), + [anon_sym_str] = ACTIONS(2532), + [anon_sym_char] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_DOT_DOT] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_gen] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_impl] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_loop] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_mod] = ACTIONS(2532), + [anon_sym_pub] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_trait] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_use] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_move] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [sym_integer_literal] = ACTIONS(2530), + [aux_sym_string_literal_token1] = ACTIONS(2530), + [sym_char_literal] = ACTIONS(2530), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_crate] = ACTIONS(2532), + [sym_metavariable] = ACTIONS(2530), + [sym__raw_string_literal_start] = ACTIONS(2530), + [sym_float_literal] = ACTIONS(2530), + }, + [STATE(654)] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [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), @@ -84579,1900 +84645,2572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2536), [anon_sym_str] = ACTIONS(2536), [anon_sym_char] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_DOT_DOT] = ACTIONS(2534), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_fn] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_gen] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_impl] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_loop] = ACTIONS(2536), + [anon_sym_match] = ACTIONS(2536), + [anon_sym_mod] = ACTIONS(2536), + [anon_sym_pub] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_trait] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_unsafe] = ACTIONS(2536), + [anon_sym_use] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_move] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [sym_integer_literal] = ACTIONS(2534), + [aux_sym_string_literal_token1] = ACTIONS(2534), + [sym_char_literal] = ACTIONS(2534), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_crate] = ACTIONS(2536), + [sym_metavariable] = ACTIONS(2534), + [sym__raw_string_literal_start] = ACTIONS(2534), + [sym_float_literal] = ACTIONS(2534), + }, + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [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(2540), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_fn] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_gen] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_impl] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_loop] = ACTIONS(2540), + [anon_sym_match] = ACTIONS(2540), + [anon_sym_mod] = ACTIONS(2540), + [anon_sym_pub] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_trait] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_unsafe] = ACTIONS(2540), + [anon_sym_use] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_move] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [sym_integer_literal] = ACTIONS(2538), + [aux_sym_string_literal_token1] = ACTIONS(2538), + [sym_char_literal] = ACTIONS(2538), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_crate] = ACTIONS(2540), + [sym_metavariable] = ACTIONS(2538), + [sym__raw_string_literal_start] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), + }, + [STATE(656)] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [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(2546), - [anon_sym_fn] = ACTIONS(2548), - [anon_sym_gen] = ACTIONS(2550), - [anon_sym_impl] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_mod] = ACTIONS(2556), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_struct] = ACTIONS(2560), - [anon_sym_trait] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2570), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2578), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_fn] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_gen] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_impl] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_loop] = ACTIONS(2544), + [anon_sym_match] = ACTIONS(2544), + [anon_sym_mod] = ACTIONS(2544), + [anon_sym_pub] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_trait] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(2544), + [anon_sym_use] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym_yield] = ACTIONS(2544), + [anon_sym_move] = ACTIONS(2544), + [anon_sym_try] = ACTIONS(2544), + [sym_integer_literal] = ACTIONS(2542), + [aux_sym_string_literal_token1] = ACTIONS(2542), + [sym_char_literal] = ACTIONS(2542), + [anon_sym_true] = ACTIONS(2544), + [anon_sym_false] = ACTIONS(2544), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_crate] = ACTIONS(2544), + [sym_metavariable] = ACTIONS(2542), + [sym__raw_string_literal_start] = ACTIONS(2542), + [sym_float_literal] = ACTIONS(2542), }, [STATE(657)] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_gen] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(2548), + [anon_sym_i8] = ACTIONS(2548), + [anon_sym_u16] = ACTIONS(2548), + [anon_sym_i16] = ACTIONS(2548), + [anon_sym_u32] = ACTIONS(2548), + [anon_sym_i32] = ACTIONS(2548), + [anon_sym_u64] = ACTIONS(2548), + [anon_sym_i64] = ACTIONS(2548), + [anon_sym_u128] = ACTIONS(2548), + [anon_sym_i128] = ACTIONS(2548), + [anon_sym_isize] = ACTIONS(2548), + [anon_sym_usize] = ACTIONS(2548), + [anon_sym_f32] = ACTIONS(2548), + [anon_sym_f64] = ACTIONS(2548), + [anon_sym_bool] = ACTIONS(2548), + [anon_sym_str] = ACTIONS(2548), + [anon_sym_char] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2546), + [anon_sym_COLON_COLON] = ACTIONS(2546), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_gen] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_impl] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_loop] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_mod] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_use] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_move] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [sym_integer_literal] = ACTIONS(2546), + [aux_sym_string_literal_token1] = ACTIONS(2546), + [sym_char_literal] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_crate] = ACTIONS(2548), + [sym_metavariable] = ACTIONS(2546), + [sym__raw_string_literal_start] = ACTIONS(2546), + [sym_float_literal] = ACTIONS(2546), }, [STATE(658)] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2580), - [sym_identifier] = ACTIONS(2582), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_macro_rules_BANG] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2580), - [anon_sym_u8] = ACTIONS(2582), - [anon_sym_i8] = ACTIONS(2582), - [anon_sym_u16] = ACTIONS(2582), - [anon_sym_i16] = ACTIONS(2582), - [anon_sym_u32] = ACTIONS(2582), - [anon_sym_i32] = ACTIONS(2582), - [anon_sym_u64] = ACTIONS(2582), - [anon_sym_i64] = ACTIONS(2582), - [anon_sym_u128] = ACTIONS(2582), - [anon_sym_i128] = ACTIONS(2582), - [anon_sym_isize] = ACTIONS(2582), - [anon_sym_usize] = ACTIONS(2582), - [anon_sym_f32] = ACTIONS(2582), - [anon_sym_f64] = ACTIONS(2582), - [anon_sym_bool] = ACTIONS(2582), - [anon_sym_str] = ACTIONS(2582), - [anon_sym_char] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2580), - [anon_sym_DOT_DOT] = ACTIONS(2580), - [anon_sym_COLON_COLON] = ACTIONS(2580), - [anon_sym_POUND] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2582), - [anon_sym_async] = ACTIONS(2582), - [anon_sym_break] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_continue] = ACTIONS(2582), - [anon_sym_default] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_fn] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2582), - [anon_sym_gen] = ACTIONS(2582), - [anon_sym_if] = ACTIONS(2582), - [anon_sym_impl] = ACTIONS(2582), - [anon_sym_let] = ACTIONS(2582), - [anon_sym_loop] = ACTIONS(2582), - [anon_sym_match] = ACTIONS(2582), - [anon_sym_mod] = ACTIONS(2582), - [anon_sym_pub] = ACTIONS(2582), - [anon_sym_return] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_trait] = ACTIONS(2582), - [anon_sym_type] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [anon_sym_unsafe] = ACTIONS(2582), - [anon_sym_use] = ACTIONS(2582), - [anon_sym_while] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym_yield] = ACTIONS(2582), - [anon_sym_move] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2582), - [sym_integer_literal] = ACTIONS(2580), - [aux_sym_string_literal_token1] = ACTIONS(2580), - [sym_char_literal] = ACTIONS(2580), - [anon_sym_true] = ACTIONS(2582), - [anon_sym_false] = ACTIONS(2582), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2582), - [sym_super] = ACTIONS(2582), - [sym_crate] = ACTIONS(2582), - [sym_metavariable] = ACTIONS(2580), - [sym__raw_string_literal_start] = ACTIONS(2580), - [sym_float_literal] = ACTIONS(2580), + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_macro_rules_BANG] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_u8] = ACTIONS(2552), + [anon_sym_i8] = ACTIONS(2552), + [anon_sym_u16] = ACTIONS(2552), + [anon_sym_i16] = ACTIONS(2552), + [anon_sym_u32] = ACTIONS(2552), + [anon_sym_i32] = ACTIONS(2552), + [anon_sym_u64] = ACTIONS(2552), + [anon_sym_i64] = ACTIONS(2552), + [anon_sym_u128] = ACTIONS(2552), + [anon_sym_i128] = ACTIONS(2552), + [anon_sym_isize] = ACTIONS(2552), + [anon_sym_usize] = ACTIONS(2552), + [anon_sym_f32] = ACTIONS(2552), + [anon_sym_f64] = ACTIONS(2552), + [anon_sym_bool] = ACTIONS(2552), + [anon_sym_str] = ACTIONS(2552), + [anon_sym_char] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2550), + [anon_sym_DOT_DOT] = ACTIONS(2550), + [anon_sym_COLON_COLON] = ACTIONS(2550), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_fn] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_gen] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_loop] = ACTIONS(2552), + [anon_sym_match] = ACTIONS(2552), + [anon_sym_mod] = ACTIONS(2552), + [anon_sym_pub] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_trait] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_unsafe] = ACTIONS(2552), + [anon_sym_use] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym_yield] = ACTIONS(2552), + [anon_sym_move] = ACTIONS(2552), + [anon_sym_try] = ACTIONS(2552), + [sym_integer_literal] = ACTIONS(2550), + [aux_sym_string_literal_token1] = ACTIONS(2550), + [sym_char_literal] = ACTIONS(2550), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2552), + [sym_super] = ACTIONS(2552), + [sym_crate] = ACTIONS(2552), + [sym_metavariable] = ACTIONS(2550), + [sym__raw_string_literal_start] = ACTIONS(2550), + [sym_float_literal] = ACTIONS(2550), }, [STATE(659)] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_gen] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym__raw_string_literal_start] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_macro_rules_BANG] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_u8] = ACTIONS(2556), + [anon_sym_i8] = ACTIONS(2556), + [anon_sym_u16] = ACTIONS(2556), + [anon_sym_i16] = ACTIONS(2556), + [anon_sym_u32] = ACTIONS(2556), + [anon_sym_i32] = ACTIONS(2556), + [anon_sym_u64] = ACTIONS(2556), + [anon_sym_i64] = ACTIONS(2556), + [anon_sym_u128] = ACTIONS(2556), + [anon_sym_i128] = ACTIONS(2556), + [anon_sym_isize] = ACTIONS(2556), + [anon_sym_usize] = ACTIONS(2556), + [anon_sym_f32] = ACTIONS(2556), + [anon_sym_f64] = ACTIONS(2556), + [anon_sym_bool] = ACTIONS(2556), + [anon_sym_str] = ACTIONS(2556), + [anon_sym_char] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_fn] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_gen] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_impl] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_loop] = ACTIONS(2556), + [anon_sym_match] = ACTIONS(2556), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_trait] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_move] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [sym_integer_literal] = ACTIONS(2554), + [aux_sym_string_literal_token1] = ACTIONS(2554), + [sym_char_literal] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_crate] = ACTIONS(2556), + [sym_metavariable] = ACTIONS(2554), + [sym__raw_string_literal_start] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2554), }, [STATE(660)] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_gen] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym__raw_string_literal_start] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_macro_rules_BANG] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_u8] = ACTIONS(2560), + [anon_sym_i8] = ACTIONS(2560), + [anon_sym_u16] = ACTIONS(2560), + [anon_sym_i16] = ACTIONS(2560), + [anon_sym_u32] = ACTIONS(2560), + [anon_sym_i32] = ACTIONS(2560), + [anon_sym_u64] = ACTIONS(2560), + [anon_sym_i64] = ACTIONS(2560), + [anon_sym_u128] = ACTIONS(2560), + [anon_sym_i128] = ACTIONS(2560), + [anon_sym_isize] = ACTIONS(2560), + [anon_sym_usize] = ACTIONS(2560), + [anon_sym_f32] = ACTIONS(2560), + [anon_sym_f64] = ACTIONS(2560), + [anon_sym_bool] = ACTIONS(2560), + [anon_sym_str] = ACTIONS(2560), + [anon_sym_char] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [anon_sym_COLON_COLON] = ACTIONS(2558), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_fn] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_gen] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_impl] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_loop] = ACTIONS(2560), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_mod] = ACTIONS(2560), + [anon_sym_pub] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_unsafe] = ACTIONS(2560), + [anon_sym_use] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_move] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [sym_integer_literal] = ACTIONS(2558), + [aux_sym_string_literal_token1] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_crate] = ACTIONS(2560), + [sym_metavariable] = ACTIONS(2558), + [sym__raw_string_literal_start] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), }, [STATE(661)] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_identifier] = ACTIONS(2586), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_macro_rules_BANG] = ACTIONS(2584), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_u8] = ACTIONS(2586), - [anon_sym_i8] = ACTIONS(2586), - [anon_sym_u16] = ACTIONS(2586), - [anon_sym_i16] = ACTIONS(2586), - [anon_sym_u32] = ACTIONS(2586), - [anon_sym_i32] = ACTIONS(2586), - [anon_sym_u64] = ACTIONS(2586), - [anon_sym_i64] = ACTIONS(2586), - [anon_sym_u128] = ACTIONS(2586), - [anon_sym_i128] = ACTIONS(2586), - [anon_sym_isize] = ACTIONS(2586), - [anon_sym_usize] = ACTIONS(2586), - [anon_sym_f32] = ACTIONS(2586), - [anon_sym_f64] = ACTIONS(2586), - [anon_sym_bool] = ACTIONS(2586), - [anon_sym_str] = ACTIONS(2586), - [anon_sym_char] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_DOT_DOT] = ACTIONS(2584), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_POUND] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), - [anon_sym_fn] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_gen] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_impl] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_loop] = ACTIONS(2586), - [anon_sym_match] = ACTIONS(2586), - [anon_sym_mod] = ACTIONS(2586), - [anon_sym_pub] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_struct] = ACTIONS(2586), - [anon_sym_trait] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_union] = ACTIONS(2586), - [anon_sym_unsafe] = ACTIONS(2586), - [anon_sym_use] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_extern] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_move] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [sym_integer_literal] = ACTIONS(2584), - [aux_sym_string_literal_token1] = ACTIONS(2584), - [sym_char_literal] = ACTIONS(2584), - [anon_sym_true] = ACTIONS(2586), - [anon_sym_false] = ACTIONS(2586), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_crate] = ACTIONS(2586), - [sym_metavariable] = ACTIONS(2584), - [sym__raw_string_literal_start] = ACTIONS(2584), - [sym_float_literal] = ACTIONS(2584), + [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_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2562), + [sym__raw_string_literal_start] = ACTIONS(2562), + [sym_float_literal] = ACTIONS(2562), }, [STATE(662)] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2588), - [sym_identifier] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_macro_rules_BANG] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_u8] = ACTIONS(2590), - [anon_sym_i8] = ACTIONS(2590), - [anon_sym_u16] = ACTIONS(2590), - [anon_sym_i16] = ACTIONS(2590), - [anon_sym_u32] = ACTIONS(2590), - [anon_sym_i32] = ACTIONS(2590), - [anon_sym_u64] = ACTIONS(2590), - [anon_sym_i64] = ACTIONS(2590), - [anon_sym_u128] = ACTIONS(2590), - [anon_sym_i128] = ACTIONS(2590), - [anon_sym_isize] = ACTIONS(2590), - [anon_sym_usize] = ACTIONS(2590), - [anon_sym_f32] = ACTIONS(2590), - [anon_sym_f64] = ACTIONS(2590), - [anon_sym_bool] = ACTIONS(2590), - [anon_sym_str] = ACTIONS(2590), - [anon_sym_char] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_DOT_DOT] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - [anon_sym_fn] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_gen] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_impl] = ACTIONS(2590), - [anon_sym_let] = ACTIONS(2590), - [anon_sym_loop] = ACTIONS(2590), - [anon_sym_match] = ACTIONS(2590), - [anon_sym_mod] = ACTIONS(2590), - [anon_sym_pub] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_struct] = ACTIONS(2590), - [anon_sym_trait] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_union] = ACTIONS(2590), - [anon_sym_unsafe] = ACTIONS(2590), - [anon_sym_use] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_extern] = ACTIONS(2590), - [anon_sym_yield] = ACTIONS(2590), - [anon_sym_move] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [sym_integer_literal] = ACTIONS(2588), - [aux_sym_string_literal_token1] = ACTIONS(2588), - [sym_char_literal] = ACTIONS(2588), - [anon_sym_true] = ACTIONS(2590), - [anon_sym_false] = ACTIONS(2590), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_crate] = ACTIONS(2590), - [sym_metavariable] = ACTIONS(2588), - [sym__raw_string_literal_start] = ACTIONS(2588), - [sym_float_literal] = ACTIONS(2588), + [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(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), + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_macro_rules_BANG] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_u8] = ACTIONS(2572), + [anon_sym_i8] = ACTIONS(2572), + [anon_sym_u16] = ACTIONS(2572), + [anon_sym_i16] = ACTIONS(2572), + [anon_sym_u32] = ACTIONS(2572), + [anon_sym_i32] = ACTIONS(2572), + [anon_sym_u64] = ACTIONS(2572), + [anon_sym_i64] = ACTIONS(2572), + [anon_sym_u128] = ACTIONS(2572), + [anon_sym_i128] = ACTIONS(2572), + [anon_sym_isize] = ACTIONS(2572), + [anon_sym_usize] = ACTIONS(2572), + [anon_sym_f32] = ACTIONS(2572), + [anon_sym_f64] = ACTIONS(2572), + [anon_sym_bool] = ACTIONS(2572), + [anon_sym_str] = ACTIONS(2572), + [anon_sym_char] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DOT_DOT] = ACTIONS(2570), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2572), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_fn] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_gen] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_impl] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_loop] = ACTIONS(2572), + [anon_sym_match] = ACTIONS(2572), + [anon_sym_mod] = ACTIONS(2572), + [anon_sym_pub] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_trait] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_unsafe] = ACTIONS(2572), + [anon_sym_use] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_yield] = ACTIONS(2572), + [anon_sym_move] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [sym_integer_literal] = ACTIONS(2570), + [aux_sym_string_literal_token1] = ACTIONS(2570), + [sym_char_literal] = ACTIONS(2570), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_crate] = ACTIONS(2572), + [sym_metavariable] = ACTIONS(2570), + [sym__raw_string_literal_start] = ACTIONS(2570), + [sym_float_literal] = ACTIONS(2570), }, [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_u8] = ACTIONS(2598), - [anon_sym_i8] = ACTIONS(2598), - [anon_sym_u16] = ACTIONS(2598), - [anon_sym_i16] = ACTIONS(2598), - [anon_sym_u32] = ACTIONS(2598), - [anon_sym_i32] = ACTIONS(2598), - [anon_sym_u64] = ACTIONS(2598), - [anon_sym_i64] = ACTIONS(2598), - [anon_sym_u128] = ACTIONS(2598), - [anon_sym_i128] = ACTIONS(2598), - [anon_sym_isize] = ACTIONS(2598), - [anon_sym_usize] = ACTIONS(2598), - [anon_sym_f32] = ACTIONS(2598), - [anon_sym_f64] = ACTIONS(2598), - [anon_sym_bool] = ACTIONS(2598), - [anon_sym_str] = ACTIONS(2598), - [anon_sym_char] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_DOT_DOT] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), - [anon_sym_fn] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_gen] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_impl] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_loop] = ACTIONS(2598), - [anon_sym_match] = ACTIONS(2598), - [anon_sym_mod] = ACTIONS(2598), - [anon_sym_pub] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_struct] = ACTIONS(2598), - [anon_sym_trait] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_union] = ACTIONS(2598), - [anon_sym_unsafe] = ACTIONS(2598), - [anon_sym_use] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_extern] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_move] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [sym_integer_literal] = ACTIONS(2596), - [aux_sym_string_literal_token1] = ACTIONS(2596), - [sym_char_literal] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2598), - [anon_sym_false] = ACTIONS(2598), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_crate] = ACTIONS(2598), - [sym_metavariable] = ACTIONS(2596), - [sym__raw_string_literal_start] = ACTIONS(2596), - [sym_float_literal] = ACTIONS(2596), + [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(665)] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2600), - [sym_identifier] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_macro_rules_BANG] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2600), - [anon_sym_u8] = ACTIONS(2602), - [anon_sym_i8] = ACTIONS(2602), - [anon_sym_u16] = ACTIONS(2602), - [anon_sym_i16] = ACTIONS(2602), - [anon_sym_u32] = ACTIONS(2602), - [anon_sym_i32] = ACTIONS(2602), - [anon_sym_u64] = ACTIONS(2602), - [anon_sym_i64] = ACTIONS(2602), - [anon_sym_u128] = ACTIONS(2602), - [anon_sym_i128] = ACTIONS(2602), - [anon_sym_isize] = ACTIONS(2602), - [anon_sym_usize] = ACTIONS(2602), - [anon_sym_f32] = ACTIONS(2602), - [anon_sym_f64] = ACTIONS(2602), - [anon_sym_bool] = ACTIONS(2602), - [anon_sym_str] = ACTIONS(2602), - [anon_sym_char] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_DOT_DOT] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_fn] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_gen] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_impl] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_loop] = ACTIONS(2602), - [anon_sym_match] = ACTIONS(2602), - [anon_sym_mod] = ACTIONS(2602), - [anon_sym_pub] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_trait] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_unsafe] = ACTIONS(2602), - [anon_sym_use] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_move] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [sym_integer_literal] = ACTIONS(2600), - [aux_sym_string_literal_token1] = ACTIONS(2600), - [sym_char_literal] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_crate] = ACTIONS(2602), - [sym_metavariable] = ACTIONS(2600), - [sym__raw_string_literal_start] = ACTIONS(2600), - [sym_float_literal] = ACTIONS(2600), + [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(666)] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_macro_rules_BANG] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_STAR] = ACTIONS(2604), - [anon_sym_u8] = ACTIONS(2606), - [anon_sym_i8] = ACTIONS(2606), - [anon_sym_u16] = ACTIONS(2606), - [anon_sym_i16] = ACTIONS(2606), - [anon_sym_u32] = ACTIONS(2606), - [anon_sym_i32] = ACTIONS(2606), - [anon_sym_u64] = ACTIONS(2606), - [anon_sym_i64] = ACTIONS(2606), - [anon_sym_u128] = ACTIONS(2606), - [anon_sym_i128] = ACTIONS(2606), - [anon_sym_isize] = ACTIONS(2606), - [anon_sym_usize] = ACTIONS(2606), - [anon_sym_f32] = ACTIONS(2606), - [anon_sym_f64] = ACTIONS(2606), - [anon_sym_bool] = ACTIONS(2606), - [anon_sym_str] = ACTIONS(2606), - [anon_sym_char] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2606), - [anon_sym_async] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_fn] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_gen] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_impl] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_loop] = ACTIONS(2606), - [anon_sym_match] = ACTIONS(2606), - [anon_sym_mod] = ACTIONS(2606), - [anon_sym_pub] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_trait] = ACTIONS(2606), - [anon_sym_type] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_unsafe] = ACTIONS(2606), - [anon_sym_use] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_yield] = ACTIONS(2606), - [anon_sym_move] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [sym_integer_literal] = ACTIONS(2604), - [aux_sym_string_literal_token1] = ACTIONS(2604), - [sym_char_literal] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_crate] = ACTIONS(2606), - [sym_metavariable] = ACTIONS(2604), - [sym__raw_string_literal_start] = ACTIONS(2604), - [sym_float_literal] = ACTIONS(2604), + [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(667)] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_macro_rules_BANG] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_u8] = ACTIONS(2610), - [anon_sym_i8] = ACTIONS(2610), - [anon_sym_u16] = ACTIONS(2610), - [anon_sym_i16] = ACTIONS(2610), - [anon_sym_u32] = ACTIONS(2610), - [anon_sym_i32] = ACTIONS(2610), - [anon_sym_u64] = ACTIONS(2610), - [anon_sym_i64] = ACTIONS(2610), - [anon_sym_u128] = ACTIONS(2610), - [anon_sym_i128] = ACTIONS(2610), - [anon_sym_isize] = ACTIONS(2610), - [anon_sym_usize] = ACTIONS(2610), - [anon_sym_f32] = ACTIONS(2610), - [anon_sym_f64] = ACTIONS(2610), - [anon_sym_bool] = ACTIONS(2610), - [anon_sym_str] = ACTIONS(2610), - [anon_sym_char] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_DOT_DOT] = ACTIONS(2608), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_fn] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_gen] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_impl] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_loop] = ACTIONS(2610), - [anon_sym_match] = ACTIONS(2610), - [anon_sym_mod] = ACTIONS(2610), - [anon_sym_pub] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_trait] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(2610), - [anon_sym_use] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_move] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [sym_integer_literal] = ACTIONS(2608), - [aux_sym_string_literal_token1] = ACTIONS(2608), - [sym_char_literal] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2610), - [anon_sym_false] = ACTIONS(2610), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_crate] = ACTIONS(2610), - [sym_metavariable] = ACTIONS(2608), - [sym__raw_string_literal_start] = ACTIONS(2608), - [sym_float_literal] = ACTIONS(2608), + [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(668)] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_macro_rules_BANG] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = 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_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_enum] = ACTIONS(2614), - [anon_sym_fn] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_gen] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_impl] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_mod] = ACTIONS(2614), - [anon_sym_pub] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_trait] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2614), - [anon_sym_use] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_extern] = 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), + [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(669)] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_macro_rules_BANG] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_u8] = ACTIONS(2618), - [anon_sym_i8] = ACTIONS(2618), - [anon_sym_u16] = ACTIONS(2618), - [anon_sym_i16] = ACTIONS(2618), - [anon_sym_u32] = ACTIONS(2618), - [anon_sym_i32] = ACTIONS(2618), - [anon_sym_u64] = ACTIONS(2618), - [anon_sym_i64] = ACTIONS(2618), - [anon_sym_u128] = ACTIONS(2618), - [anon_sym_i128] = ACTIONS(2618), - [anon_sym_isize] = ACTIONS(2618), - [anon_sym_usize] = ACTIONS(2618), - [anon_sym_f32] = ACTIONS(2618), - [anon_sym_f64] = ACTIONS(2618), - [anon_sym_bool] = ACTIONS(2618), - [anon_sym_str] = ACTIONS(2618), - [anon_sym_char] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_DOT_DOT] = ACTIONS(2616), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_POUND] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_const] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_default] = ACTIONS(2618), - [anon_sym_enum] = ACTIONS(2618), - [anon_sym_fn] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_gen] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_impl] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_loop] = ACTIONS(2618), - [anon_sym_match] = ACTIONS(2618), - [anon_sym_mod] = ACTIONS(2618), - [anon_sym_pub] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_static] = ACTIONS(2618), - [anon_sym_struct] = ACTIONS(2618), - [anon_sym_trait] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_union] = ACTIONS(2618), - [anon_sym_unsafe] = ACTIONS(2618), - [anon_sym_use] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_extern] = ACTIONS(2618), - [anon_sym_yield] = ACTIONS(2618), - [anon_sym_move] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [sym_integer_literal] = ACTIONS(2616), - [aux_sym_string_literal_token1] = ACTIONS(2616), - [sym_char_literal] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2618), - [sym_super] = ACTIONS(2618), - [sym_crate] = ACTIONS(2618), - [sym_metavariable] = ACTIONS(2616), - [sym__raw_string_literal_start] = ACTIONS(2616), - [sym_float_literal] = ACTIONS(2616), + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_macro_rules_BANG] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_u8] = ACTIONS(2596), + [anon_sym_i8] = ACTIONS(2596), + [anon_sym_u16] = ACTIONS(2596), + [anon_sym_i16] = ACTIONS(2596), + [anon_sym_u32] = ACTIONS(2596), + [anon_sym_i32] = ACTIONS(2596), + [anon_sym_u64] = ACTIONS(2596), + [anon_sym_i64] = ACTIONS(2596), + [anon_sym_u128] = ACTIONS(2596), + [anon_sym_i128] = ACTIONS(2596), + [anon_sym_isize] = ACTIONS(2596), + [anon_sym_usize] = ACTIONS(2596), + [anon_sym_f32] = ACTIONS(2596), + [anon_sym_f64] = ACTIONS(2596), + [anon_sym_bool] = ACTIONS(2596), + [anon_sym_str] = ACTIONS(2596), + [anon_sym_char] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_DOT_DOT] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_gen] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_impl] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_loop] = ACTIONS(2596), + [anon_sym_match] = ACTIONS(2596), + [anon_sym_mod] = ACTIONS(2596), + [anon_sym_pub] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(2596), + [anon_sym_trait] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_union] = ACTIONS(2596), + [anon_sym_unsafe] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_extern] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_move] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [sym_integer_literal] = ACTIONS(2594), + [aux_sym_string_literal_token1] = ACTIONS(2594), + [sym_char_literal] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_crate] = ACTIONS(2596), + [sym_metavariable] = ACTIONS(2594), + [sym__raw_string_literal_start] = ACTIONS(2594), + [sym_float_literal] = ACTIONS(2594), }, [STATE(670)] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2620), - [sym_identifier] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_macro_rules_BANG] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_u8] = ACTIONS(2622), - [anon_sym_i8] = ACTIONS(2622), - [anon_sym_u16] = ACTIONS(2622), - [anon_sym_i16] = ACTIONS(2622), - [anon_sym_u32] = ACTIONS(2622), - [anon_sym_i32] = ACTIONS(2622), - [anon_sym_u64] = ACTIONS(2622), - [anon_sym_i64] = ACTIONS(2622), - [anon_sym_u128] = ACTIONS(2622), - [anon_sym_i128] = ACTIONS(2622), - [anon_sym_isize] = ACTIONS(2622), - [anon_sym_usize] = ACTIONS(2622), - [anon_sym_f32] = ACTIONS(2622), - [anon_sym_f64] = ACTIONS(2622), - [anon_sym_bool] = ACTIONS(2622), - [anon_sym_str] = ACTIONS(2622), - [anon_sym_char] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_DOT_DOT] = ACTIONS(2620), - [anon_sym_COLON_COLON] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_fn] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_gen] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_impl] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_loop] = ACTIONS(2622), - [anon_sym_match] = ACTIONS(2622), - [anon_sym_mod] = ACTIONS(2622), - [anon_sym_pub] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_trait] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_unsafe] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2622), - [anon_sym_move] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [sym_integer_literal] = ACTIONS(2620), - [aux_sym_string_literal_token1] = ACTIONS(2620), - [sym_char_literal] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2622), - [anon_sym_false] = ACTIONS(2622), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2622), - [sym_super] = ACTIONS(2622), - [sym_crate] = ACTIONS(2622), - [sym_metavariable] = ACTIONS(2620), - [sym__raw_string_literal_start] = ACTIONS(2620), - [sym_float_literal] = ACTIONS(2620), + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_macro_rules_BANG] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2598), + [anon_sym_u8] = ACTIONS(2600), + [anon_sym_i8] = ACTIONS(2600), + [anon_sym_u16] = ACTIONS(2600), + [anon_sym_i16] = ACTIONS(2600), + [anon_sym_u32] = ACTIONS(2600), + [anon_sym_i32] = ACTIONS(2600), + [anon_sym_u64] = ACTIONS(2600), + [anon_sym_i64] = ACTIONS(2600), + [anon_sym_u128] = ACTIONS(2600), + [anon_sym_i128] = ACTIONS(2600), + [anon_sym_isize] = ACTIONS(2600), + [anon_sym_usize] = ACTIONS(2600), + [anon_sym_f32] = ACTIONS(2600), + [anon_sym_f64] = ACTIONS(2600), + [anon_sym_bool] = ACTIONS(2600), + [anon_sym_str] = ACTIONS(2600), + [anon_sym_char] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_DOT_DOT] = ACTIONS(2598), + [anon_sym_COLON_COLON] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [anon_sym_fn] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_gen] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_impl] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_loop] = ACTIONS(2600), + [anon_sym_match] = ACTIONS(2600), + [anon_sym_mod] = ACTIONS(2600), + [anon_sym_pub] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_struct] = ACTIONS(2600), + [anon_sym_trait] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_union] = ACTIONS(2600), + [anon_sym_unsafe] = ACTIONS(2600), + [anon_sym_use] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_extern] = ACTIONS(2600), + [anon_sym_yield] = ACTIONS(2600), + [anon_sym_move] = ACTIONS(2600), + [anon_sym_try] = ACTIONS(2600), + [sym_integer_literal] = ACTIONS(2598), + [aux_sym_string_literal_token1] = ACTIONS(2598), + [sym_char_literal] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2600), + [anon_sym_false] = ACTIONS(2600), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2600), + [sym_super] = ACTIONS(2600), + [sym_crate] = ACTIONS(2600), + [sym_metavariable] = ACTIONS(2598), + [sym__raw_string_literal_start] = ACTIONS(2598), + [sym_float_literal] = ACTIONS(2598), }, [STATE(671)] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_macro_rules_BANG] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_u8] = ACTIONS(2626), - [anon_sym_i8] = ACTIONS(2626), - [anon_sym_u16] = ACTIONS(2626), - [anon_sym_i16] = ACTIONS(2626), - [anon_sym_u32] = ACTIONS(2626), - [anon_sym_i32] = ACTIONS(2626), - [anon_sym_u64] = ACTIONS(2626), - [anon_sym_i64] = ACTIONS(2626), - [anon_sym_u128] = ACTIONS(2626), - [anon_sym_i128] = ACTIONS(2626), - [anon_sym_isize] = ACTIONS(2626), - [anon_sym_usize] = ACTIONS(2626), - [anon_sym_f32] = ACTIONS(2626), - [anon_sym_f64] = ACTIONS(2626), - [anon_sym_bool] = ACTIONS(2626), - [anon_sym_str] = ACTIONS(2626), - [anon_sym_char] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_PIPE] = ACTIONS(2624), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(2624), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_POUND] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_gen] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_impl] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_loop] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_mod] = ACTIONS(2626), - [anon_sym_pub] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_trait] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_union] = ACTIONS(2626), - [anon_sym_unsafe] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_extern] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_move] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [sym_integer_literal] = ACTIONS(2624), - [aux_sym_string_literal_token1] = ACTIONS(2624), - [sym_char_literal] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_crate] = ACTIONS(2626), - [sym_metavariable] = ACTIONS(2624), - [sym__raw_string_literal_start] = ACTIONS(2624), - [sym_float_literal] = ACTIONS(2624), + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_macro_rules_BANG] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2602), + [anon_sym_u8] = ACTIONS(2604), + [anon_sym_i8] = ACTIONS(2604), + [anon_sym_u16] = ACTIONS(2604), + [anon_sym_i16] = ACTIONS(2604), + [anon_sym_u32] = ACTIONS(2604), + [anon_sym_i32] = ACTIONS(2604), + [anon_sym_u64] = ACTIONS(2604), + [anon_sym_i64] = ACTIONS(2604), + [anon_sym_u128] = ACTIONS(2604), + [anon_sym_i128] = ACTIONS(2604), + [anon_sym_isize] = ACTIONS(2604), + [anon_sym_usize] = ACTIONS(2604), + [anon_sym_f32] = ACTIONS(2604), + [anon_sym_f64] = ACTIONS(2604), + [anon_sym_bool] = ACTIONS(2604), + [anon_sym_str] = ACTIONS(2604), + [anon_sym_char] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_DOT_DOT] = ACTIONS(2602), + [anon_sym_COLON_COLON] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_const] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_fn] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_gen] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_impl] = ACTIONS(2604), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_loop] = ACTIONS(2604), + [anon_sym_match] = ACTIONS(2604), + [anon_sym_mod] = ACTIONS(2604), + [anon_sym_pub] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(2604), + [anon_sym_trait] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_union] = ACTIONS(2604), + [anon_sym_unsafe] = ACTIONS(2604), + [anon_sym_use] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_extern] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2604), + [anon_sym_move] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [sym_integer_literal] = ACTIONS(2602), + [aux_sym_string_literal_token1] = ACTIONS(2602), + [sym_char_literal] = ACTIONS(2602), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2604), + [sym_super] = ACTIONS(2604), + [sym_crate] = ACTIONS(2604), + [sym_metavariable] = ACTIONS(2602), + [sym__raw_string_literal_start] = ACTIONS(2602), + [sym_float_literal] = ACTIONS(2602), }, [STATE(672)] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_macro_rules_BANG] = ACTIONS(2628), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_u8] = ACTIONS(2630), - [anon_sym_i8] = ACTIONS(2630), - [anon_sym_u16] = ACTIONS(2630), - [anon_sym_i16] = ACTIONS(2630), - [anon_sym_u32] = ACTIONS(2630), - [anon_sym_i32] = ACTIONS(2630), - [anon_sym_u64] = ACTIONS(2630), - [anon_sym_i64] = ACTIONS(2630), - [anon_sym_u128] = ACTIONS(2630), - [anon_sym_i128] = ACTIONS(2630), - [anon_sym_isize] = ACTIONS(2630), - [anon_sym_usize] = ACTIONS(2630), - [anon_sym_f32] = ACTIONS(2630), - [anon_sym_f64] = ACTIONS(2630), - [anon_sym_bool] = ACTIONS(2630), - [anon_sym_str] = ACTIONS(2630), - [anon_sym_char] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_POUND] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2630), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_fn] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_gen] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_impl] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2630), - [anon_sym_loop] = ACTIONS(2630), - [anon_sym_match] = ACTIONS(2630), - [anon_sym_mod] = ACTIONS(2630), - [anon_sym_pub] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_trait] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_unsafe] = ACTIONS(2630), - [anon_sym_use] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym_yield] = ACTIONS(2630), - [anon_sym_move] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [sym_integer_literal] = ACTIONS(2628), - [aux_sym_string_literal_token1] = ACTIONS(2628), - [sym_char_literal] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2630), - [anon_sym_false] = ACTIONS(2630), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2630), - [sym_super] = ACTIONS(2630), - [sym_crate] = ACTIONS(2630), - [sym_metavariable] = ACTIONS(2628), - [sym__raw_string_literal_start] = ACTIONS(2628), - [sym_float_literal] = ACTIONS(2628), + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_macro_rules_BANG] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2606), + [anon_sym_u8] = ACTIONS(2608), + [anon_sym_i8] = ACTIONS(2608), + [anon_sym_u16] = ACTIONS(2608), + [anon_sym_i16] = ACTIONS(2608), + [anon_sym_u32] = ACTIONS(2608), + [anon_sym_i32] = ACTIONS(2608), + [anon_sym_u64] = ACTIONS(2608), + [anon_sym_i64] = ACTIONS(2608), + [anon_sym_u128] = ACTIONS(2608), + [anon_sym_i128] = ACTIONS(2608), + [anon_sym_isize] = ACTIONS(2608), + [anon_sym_usize] = ACTIONS(2608), + [anon_sym_f32] = ACTIONS(2608), + [anon_sym_f64] = ACTIONS(2608), + [anon_sym_bool] = ACTIONS(2608), + [anon_sym_str] = ACTIONS(2608), + [anon_sym_char] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_DOT_DOT] = ACTIONS(2606), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [anon_sym_fn] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_gen] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_impl] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_loop] = ACTIONS(2608), + [anon_sym_match] = ACTIONS(2608), + [anon_sym_mod] = ACTIONS(2608), + [anon_sym_pub] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_struct] = ACTIONS(2608), + [anon_sym_trait] = ACTIONS(2608), + [anon_sym_type] = ACTIONS(2608), + [anon_sym_union] = ACTIONS(2608), + [anon_sym_unsafe] = ACTIONS(2608), + [anon_sym_use] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_yield] = ACTIONS(2608), + [anon_sym_move] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [sym_integer_literal] = ACTIONS(2606), + [aux_sym_string_literal_token1] = ACTIONS(2606), + [sym_char_literal] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2608), + [sym_super] = ACTIONS(2608), + [sym_crate] = ACTIONS(2608), + [sym_metavariable] = ACTIONS(2606), + [sym__raw_string_literal_start] = ACTIONS(2606), + [sym_float_literal] = ACTIONS(2606), }, [STATE(673)] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_macro_rules_BANG] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_u8] = ACTIONS(2634), - [anon_sym_i8] = ACTIONS(2634), - [anon_sym_u16] = ACTIONS(2634), - [anon_sym_i16] = ACTIONS(2634), - [anon_sym_u32] = ACTIONS(2634), - [anon_sym_i32] = ACTIONS(2634), - [anon_sym_u64] = ACTIONS(2634), - [anon_sym_i64] = ACTIONS(2634), - [anon_sym_u128] = ACTIONS(2634), - [anon_sym_i128] = ACTIONS(2634), - [anon_sym_isize] = ACTIONS(2634), - [anon_sym_usize] = ACTIONS(2634), - [anon_sym_f32] = ACTIONS(2634), - [anon_sym_f64] = ACTIONS(2634), - [anon_sym_bool] = ACTIONS(2634), - [anon_sym_str] = ACTIONS(2634), - [anon_sym_char] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_fn] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_gen] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_impl] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_loop] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_mod] = ACTIONS(2634), - [anon_sym_pub] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_trait] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(2634), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_move] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [sym_integer_literal] = ACTIONS(2632), - [aux_sym_string_literal_token1] = ACTIONS(2632), - [sym_char_literal] = ACTIONS(2632), - [anon_sym_true] = ACTIONS(2634), - [anon_sym_false] = ACTIONS(2634), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2634), - [sym_super] = ACTIONS(2634), - [sym_crate] = ACTIONS(2634), - [sym_metavariable] = ACTIONS(2632), - [sym__raw_string_literal_start] = ACTIONS(2632), - [sym_float_literal] = ACTIONS(2632), + [ts_builtin_sym_end] = ACTIONS(2610), + [sym_identifier] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym_macro_rules_BANG] = ACTIONS(2610), + [anon_sym_LPAREN] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_RBRACE] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(2610), + [anon_sym_u8] = ACTIONS(2612), + [anon_sym_i8] = ACTIONS(2612), + [anon_sym_u16] = ACTIONS(2612), + [anon_sym_i16] = ACTIONS(2612), + [anon_sym_u32] = ACTIONS(2612), + [anon_sym_i32] = ACTIONS(2612), + [anon_sym_u64] = ACTIONS(2612), + [anon_sym_i64] = ACTIONS(2612), + [anon_sym_u128] = ACTIONS(2612), + [anon_sym_i128] = ACTIONS(2612), + [anon_sym_isize] = ACTIONS(2612), + [anon_sym_usize] = ACTIONS(2612), + [anon_sym_f32] = ACTIONS(2612), + [anon_sym_f64] = ACTIONS(2612), + [anon_sym_bool] = ACTIONS(2612), + [anon_sym_str] = ACTIONS(2612), + [anon_sym_char] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2610), + [anon_sym_AMP] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2610), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_COLON_COLON] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(2610), + [anon_sym_SQUOTE] = ACTIONS(2612), + [anon_sym_async] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_fn] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_gen] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_impl] = ACTIONS(2612), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_loop] = ACTIONS(2612), + [anon_sym_match] = ACTIONS(2612), + [anon_sym_mod] = ACTIONS(2612), + [anon_sym_pub] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_trait] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_unsafe] = ACTIONS(2612), + [anon_sym_use] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_yield] = ACTIONS(2612), + [anon_sym_move] = ACTIONS(2612), + [anon_sym_try] = ACTIONS(2612), + [sym_integer_literal] = ACTIONS(2610), + [aux_sym_string_literal_token1] = ACTIONS(2610), + [sym_char_literal] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2612), + [sym_super] = ACTIONS(2612), + [sym_crate] = ACTIONS(2612), + [sym_metavariable] = ACTIONS(2610), + [sym__raw_string_literal_start] = ACTIONS(2610), + [sym_float_literal] = ACTIONS(2610), }, [STATE(674)] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_macro_rules_BANG] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_u8] = ACTIONS(2638), - [anon_sym_i8] = ACTIONS(2638), - [anon_sym_u16] = ACTIONS(2638), - [anon_sym_i16] = ACTIONS(2638), - [anon_sym_u32] = ACTIONS(2638), - [anon_sym_i32] = ACTIONS(2638), - [anon_sym_u64] = ACTIONS(2638), - [anon_sym_i64] = ACTIONS(2638), - [anon_sym_u128] = ACTIONS(2638), - [anon_sym_i128] = ACTIONS(2638), - [anon_sym_isize] = ACTIONS(2638), - [anon_sym_usize] = ACTIONS(2638), - [anon_sym_f32] = ACTIONS(2638), - [anon_sym_f64] = ACTIONS(2638), - [anon_sym_bool] = ACTIONS(2638), - [anon_sym_str] = ACTIONS(2638), - [anon_sym_char] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_DOT_DOT] = ACTIONS(2636), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_POUND] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2638), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_fn] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_gen] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_impl] = ACTIONS(2638), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_loop] = ACTIONS(2638), - [anon_sym_match] = ACTIONS(2638), - [anon_sym_mod] = ACTIONS(2638), - [anon_sym_pub] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_trait] = ACTIONS(2638), - [anon_sym_type] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_unsafe] = ACTIONS(2638), - [anon_sym_use] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym_yield] = ACTIONS(2638), - [anon_sym_move] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [sym_integer_literal] = ACTIONS(2636), - [aux_sym_string_literal_token1] = ACTIONS(2636), - [sym_char_literal] = ACTIONS(2636), - [anon_sym_true] = ACTIONS(2638), - [anon_sym_false] = ACTIONS(2638), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2638), - [sym_super] = ACTIONS(2638), - [sym_crate] = ACTIONS(2638), - [sym_metavariable] = ACTIONS(2636), - [sym__raw_string_literal_start] = ACTIONS(2636), - [sym_float_literal] = ACTIONS(2636), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_macro_rules_BANG] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_u8] = ACTIONS(2616), + [anon_sym_i8] = ACTIONS(2616), + [anon_sym_u16] = ACTIONS(2616), + [anon_sym_i16] = ACTIONS(2616), + [anon_sym_u32] = ACTIONS(2616), + [anon_sym_i32] = ACTIONS(2616), + [anon_sym_u64] = ACTIONS(2616), + [anon_sym_i64] = ACTIONS(2616), + [anon_sym_u128] = ACTIONS(2616), + [anon_sym_i128] = ACTIONS(2616), + [anon_sym_isize] = ACTIONS(2616), + [anon_sym_usize] = ACTIONS(2616), + [anon_sym_f32] = ACTIONS(2616), + [anon_sym_f64] = ACTIONS(2616), + [anon_sym_bool] = ACTIONS(2616), + [anon_sym_str] = ACTIONS(2616), + [anon_sym_char] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2614), + [anon_sym_DOT_DOT] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2614), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2616), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_gen] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_impl] = ACTIONS(2616), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_loop] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_mod] = ACTIONS(2616), + [anon_sym_pub] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_trait] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_use] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym_yield] = ACTIONS(2616), + [anon_sym_move] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [sym_integer_literal] = ACTIONS(2614), + [aux_sym_string_literal_token1] = ACTIONS(2614), + [sym_char_literal] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2616), + [sym_super] = ACTIONS(2616), + [sym_crate] = ACTIONS(2616), + [sym_metavariable] = ACTIONS(2614), + [sym__raw_string_literal_start] = ACTIONS(2614), + [sym_float_literal] = ACTIONS(2614), }, [STATE(675)] = { [sym_line_comment] = STATE(675), [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2640), - [sym_identifier] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_macro_rules_BANG] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_u8] = ACTIONS(2642), - [anon_sym_i8] = ACTIONS(2642), - [anon_sym_u16] = ACTIONS(2642), - [anon_sym_i16] = ACTIONS(2642), - [anon_sym_u32] = ACTIONS(2642), - [anon_sym_i32] = ACTIONS(2642), - [anon_sym_u64] = ACTIONS(2642), - [anon_sym_i64] = ACTIONS(2642), - [anon_sym_u128] = ACTIONS(2642), - [anon_sym_i128] = ACTIONS(2642), - [anon_sym_isize] = ACTIONS(2642), - [anon_sym_usize] = ACTIONS(2642), - [anon_sym_f32] = ACTIONS(2642), - [anon_sym_f64] = ACTIONS(2642), - [anon_sym_bool] = ACTIONS(2642), - [anon_sym_str] = ACTIONS(2642), - [anon_sym_char] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_DOT_DOT] = ACTIONS(2640), - [anon_sym_COLON_COLON] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), - [anon_sym_async] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_gen] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_impl] = ACTIONS(2642), - [anon_sym_let] = ACTIONS(2642), - [anon_sym_loop] = ACTIONS(2642), - [anon_sym_match] = ACTIONS(2642), - [anon_sym_mod] = ACTIONS(2642), - [anon_sym_pub] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_struct] = ACTIONS(2642), - [anon_sym_trait] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_union] = ACTIONS(2642), - [anon_sym_unsafe] = ACTIONS(2642), - [anon_sym_use] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_extern] = ACTIONS(2642), - [anon_sym_yield] = ACTIONS(2642), - [anon_sym_move] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [sym_integer_literal] = ACTIONS(2640), - [aux_sym_string_literal_token1] = ACTIONS(2640), - [sym_char_literal] = ACTIONS(2640), - [anon_sym_true] = ACTIONS(2642), - [anon_sym_false] = ACTIONS(2642), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2642), - [sym_super] = ACTIONS(2642), - [sym_crate] = ACTIONS(2642), - [sym_metavariable] = ACTIONS(2640), - [sym__raw_string_literal_start] = ACTIONS(2640), - [sym_float_literal] = ACTIONS(2640), + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_macro_rules_BANG] = ACTIONS(2618), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_u8] = ACTIONS(2620), + [anon_sym_i8] = ACTIONS(2620), + [anon_sym_u16] = ACTIONS(2620), + [anon_sym_i16] = ACTIONS(2620), + [anon_sym_u32] = ACTIONS(2620), + [anon_sym_i32] = ACTIONS(2620), + [anon_sym_u64] = ACTIONS(2620), + [anon_sym_i64] = ACTIONS(2620), + [anon_sym_u128] = ACTIONS(2620), + [anon_sym_i128] = ACTIONS(2620), + [anon_sym_isize] = ACTIONS(2620), + [anon_sym_usize] = ACTIONS(2620), + [anon_sym_f32] = ACTIONS(2620), + [anon_sym_f64] = ACTIONS(2620), + [anon_sym_bool] = ACTIONS(2620), + [anon_sym_str] = ACTIONS(2620), + [anon_sym_char] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_PIPE] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2618), + [anon_sym_DOT_DOT] = ACTIONS(2618), + [anon_sym_COLON_COLON] = ACTIONS(2618), + [anon_sym_POUND] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_fn] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_gen] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_impl] = ACTIONS(2620), + [anon_sym_let] = ACTIONS(2620), + [anon_sym_loop] = ACTIONS(2620), + [anon_sym_match] = ACTIONS(2620), + [anon_sym_mod] = ACTIONS(2620), + [anon_sym_pub] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_trait] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(2620), + [anon_sym_use] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym_yield] = ACTIONS(2620), + [anon_sym_move] = ACTIONS(2620), + [anon_sym_try] = ACTIONS(2620), + [sym_integer_literal] = ACTIONS(2618), + [aux_sym_string_literal_token1] = ACTIONS(2618), + [sym_char_literal] = ACTIONS(2618), + [anon_sym_true] = ACTIONS(2620), + [anon_sym_false] = ACTIONS(2620), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2620), + [sym_super] = ACTIONS(2620), + [sym_crate] = ACTIONS(2620), + [sym_metavariable] = ACTIONS(2618), + [sym__raw_string_literal_start] = ACTIONS(2618), + [sym_float_literal] = ACTIONS(2618), }, [STATE(676)] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(2644), - [sym_identifier] = ACTIONS(2646), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_macro_rules_BANG] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_RBRACE] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2644), - [anon_sym_u8] = ACTIONS(2646), - [anon_sym_i8] = ACTIONS(2646), - [anon_sym_u16] = ACTIONS(2646), - [anon_sym_i16] = ACTIONS(2646), - [anon_sym_u32] = ACTIONS(2646), - [anon_sym_i32] = ACTIONS(2646), - [anon_sym_u64] = ACTIONS(2646), - [anon_sym_i64] = ACTIONS(2646), - [anon_sym_u128] = ACTIONS(2646), - [anon_sym_i128] = ACTIONS(2646), - [anon_sym_isize] = ACTIONS(2646), - [anon_sym_usize] = ACTIONS(2646), - [anon_sym_f32] = ACTIONS(2646), - [anon_sym_f64] = ACTIONS(2646), - [anon_sym_bool] = ACTIONS(2646), - [anon_sym_str] = ACTIONS(2646), - [anon_sym_char] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_DOT_DOT] = ACTIONS(2644), - [anon_sym_COLON_COLON] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2646), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), - [anon_sym_fn] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_gen] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_impl] = ACTIONS(2646), - [anon_sym_let] = ACTIONS(2646), - [anon_sym_loop] = ACTIONS(2646), - [anon_sym_match] = ACTIONS(2646), - [anon_sym_mod] = ACTIONS(2646), - [anon_sym_pub] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_struct] = ACTIONS(2646), - [anon_sym_trait] = ACTIONS(2646), - [anon_sym_type] = ACTIONS(2646), - [anon_sym_union] = ACTIONS(2646), - [anon_sym_unsafe] = ACTIONS(2646), - [anon_sym_use] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_extern] = ACTIONS(2646), - [anon_sym_yield] = ACTIONS(2646), - [anon_sym_move] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [sym_integer_literal] = ACTIONS(2644), - [aux_sym_string_literal_token1] = ACTIONS(2644), - [sym_char_literal] = ACTIONS(2644), - [anon_sym_true] = ACTIONS(2646), - [anon_sym_false] = ACTIONS(2646), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2646), - [sym_super] = ACTIONS(2646), - [sym_crate] = ACTIONS(2646), - [sym_metavariable] = ACTIONS(2644), - [sym__raw_string_literal_start] = ACTIONS(2644), - [sym_float_literal] = ACTIONS(2644), + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_macro_rules_BANG] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_u8] = ACTIONS(2624), + [anon_sym_i8] = ACTIONS(2624), + [anon_sym_u16] = ACTIONS(2624), + [anon_sym_i16] = ACTIONS(2624), + [anon_sym_u32] = ACTIONS(2624), + [anon_sym_i32] = ACTIONS(2624), + [anon_sym_u64] = ACTIONS(2624), + [anon_sym_i64] = ACTIONS(2624), + [anon_sym_u128] = ACTIONS(2624), + [anon_sym_i128] = ACTIONS(2624), + [anon_sym_isize] = ACTIONS(2624), + [anon_sym_usize] = ACTIONS(2624), + [anon_sym_f32] = ACTIONS(2624), + [anon_sym_f64] = ACTIONS(2624), + [anon_sym_bool] = ACTIONS(2624), + [anon_sym_str] = ACTIONS(2624), + [anon_sym_char] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_DOT_DOT] = ACTIONS(2622), + [anon_sym_COLON_COLON] = ACTIONS(2622), + [anon_sym_POUND] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2624), + [anon_sym_async] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_fn] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_gen] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_impl] = ACTIONS(2624), + [anon_sym_let] = ACTIONS(2624), + [anon_sym_loop] = ACTIONS(2624), + [anon_sym_match] = ACTIONS(2624), + [anon_sym_mod] = ACTIONS(2624), + [anon_sym_pub] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_trait] = ACTIONS(2624), + [anon_sym_type] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_unsafe] = ACTIONS(2624), + [anon_sym_use] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym_yield] = ACTIONS(2624), + [anon_sym_move] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [sym_integer_literal] = ACTIONS(2622), + [aux_sym_string_literal_token1] = ACTIONS(2622), + [sym_char_literal] = ACTIONS(2622), + [anon_sym_true] = ACTIONS(2624), + [anon_sym_false] = ACTIONS(2624), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2624), + [sym_super] = ACTIONS(2624), + [sym_crate] = ACTIONS(2624), + [sym_metavariable] = ACTIONS(2622), + [sym__raw_string_literal_start] = ACTIONS(2622), + [sym_float_literal] = ACTIONS(2622), }, [STATE(677)] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2648), - [sym_identifier] = ACTIONS(2650), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_macro_rules_BANG] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_u8] = ACTIONS(2650), - [anon_sym_i8] = ACTIONS(2650), - [anon_sym_u16] = ACTIONS(2650), - [anon_sym_i16] = ACTIONS(2650), - [anon_sym_u32] = ACTIONS(2650), - [anon_sym_i32] = ACTIONS(2650), - [anon_sym_u64] = ACTIONS(2650), - [anon_sym_i64] = ACTIONS(2650), - [anon_sym_u128] = ACTIONS(2650), - [anon_sym_i128] = ACTIONS(2650), - [anon_sym_isize] = ACTIONS(2650), - [anon_sym_usize] = ACTIONS(2650), - [anon_sym_f32] = ACTIONS(2650), - [anon_sym_f64] = ACTIONS(2650), - [anon_sym_bool] = ACTIONS(2650), - [anon_sym_str] = ACTIONS(2650), - [anon_sym_char] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2648), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_PIPE] = ACTIONS(2648), - [anon_sym_LT] = ACTIONS(2648), - [anon_sym_DOT_DOT] = ACTIONS(2648), - [anon_sym_COLON_COLON] = ACTIONS(2648), - [anon_sym_POUND] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2650), - [anon_sym_async] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_const] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [anon_sym_fn] = ACTIONS(2650), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_gen] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_impl] = ACTIONS(2650), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_loop] = ACTIONS(2650), - [anon_sym_match] = ACTIONS(2650), - [anon_sym_mod] = ACTIONS(2650), - [anon_sym_pub] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_trait] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_union] = ACTIONS(2650), - [anon_sym_unsafe] = ACTIONS(2650), - [anon_sym_use] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_extern] = ACTIONS(2650), - [anon_sym_yield] = ACTIONS(2650), - [anon_sym_move] = ACTIONS(2650), - [anon_sym_try] = ACTIONS(2650), - [sym_integer_literal] = ACTIONS(2648), - [aux_sym_string_literal_token1] = ACTIONS(2648), - [sym_char_literal] = ACTIONS(2648), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2650), - [sym_super] = ACTIONS(2650), - [sym_crate] = ACTIONS(2650), - [sym_metavariable] = ACTIONS(2648), - [sym__raw_string_literal_start] = ACTIONS(2648), - [sym_float_literal] = ACTIONS(2648), + [ts_builtin_sym_end] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym_macro_rules_BANG] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_STAR] = ACTIONS(2626), + [anon_sym_u8] = ACTIONS(2628), + [anon_sym_i8] = ACTIONS(2628), + [anon_sym_u16] = ACTIONS(2628), + [anon_sym_i16] = ACTIONS(2628), + [anon_sym_u32] = ACTIONS(2628), + [anon_sym_i32] = ACTIONS(2628), + [anon_sym_u64] = ACTIONS(2628), + [anon_sym_i64] = ACTIONS(2628), + [anon_sym_u128] = ACTIONS(2628), + [anon_sym_i128] = ACTIONS(2628), + [anon_sym_isize] = ACTIONS(2628), + [anon_sym_usize] = ACTIONS(2628), + [anon_sym_f32] = ACTIONS(2628), + [anon_sym_f64] = ACTIONS(2628), + [anon_sym_bool] = ACTIONS(2628), + [anon_sym_str] = ACTIONS(2628), + [anon_sym_char] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_PIPE] = ACTIONS(2626), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_DOT_DOT] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_POUND] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2628), + [anon_sym_async] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_gen] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_impl] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_loop] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_mod] = ACTIONS(2628), + [anon_sym_pub] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_struct] = ACTIONS(2628), + [anon_sym_trait] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_union] = ACTIONS(2628), + [anon_sym_unsafe] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2628), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_move] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [sym_integer_literal] = ACTIONS(2626), + [aux_sym_string_literal_token1] = ACTIONS(2626), + [sym_char_literal] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2628), + [sym_super] = ACTIONS(2628), + [sym_crate] = ACTIONS(2628), + [sym_metavariable] = ACTIONS(2626), + [sym__raw_string_literal_start] = ACTIONS(2626), + [sym_float_literal] = ACTIONS(2626), }, [STATE(678)] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2652), - [sym_identifier] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_macro_rules_BANG] = ACTIONS(2652), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_STAR] = ACTIONS(2652), - [anon_sym_u8] = ACTIONS(2654), - [anon_sym_i8] = ACTIONS(2654), - [anon_sym_u16] = ACTIONS(2654), - [anon_sym_i16] = ACTIONS(2654), - [anon_sym_u32] = ACTIONS(2654), - [anon_sym_i32] = ACTIONS(2654), - [anon_sym_u64] = ACTIONS(2654), - [anon_sym_i64] = ACTIONS(2654), - [anon_sym_u128] = ACTIONS(2654), - [anon_sym_i128] = ACTIONS(2654), - [anon_sym_isize] = ACTIONS(2654), - [anon_sym_usize] = ACTIONS(2654), - [anon_sym_f32] = ACTIONS(2654), - [anon_sym_f64] = ACTIONS(2654), - [anon_sym_bool] = ACTIONS(2654), - [anon_sym_str] = ACTIONS(2654), - [anon_sym_char] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_AMP] = ACTIONS(2652), - [anon_sym_PIPE] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(2652), - [anon_sym_COLON_COLON] = ACTIONS(2652), - [anon_sym_POUND] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2654), - [anon_sym_async] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_const] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_default] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), - [anon_sym_fn] = ACTIONS(2654), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_gen] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_impl] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_loop] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2654), - [anon_sym_mod] = ACTIONS(2654), - [anon_sym_pub] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_struct] = ACTIONS(2654), - [anon_sym_trait] = ACTIONS(2654), - [anon_sym_type] = ACTIONS(2654), - [anon_sym_union] = ACTIONS(2654), - [anon_sym_unsafe] = ACTIONS(2654), - [anon_sym_use] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_extern] = ACTIONS(2654), - [anon_sym_yield] = ACTIONS(2654), - [anon_sym_move] = ACTIONS(2654), - [anon_sym_try] = ACTIONS(2654), - [sym_integer_literal] = ACTIONS(2652), - [aux_sym_string_literal_token1] = ACTIONS(2652), - [sym_char_literal] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2654), - [sym_super] = ACTIONS(2654), - [sym_crate] = ACTIONS(2654), - [sym_metavariable] = ACTIONS(2652), - [sym__raw_string_literal_start] = ACTIONS(2652), - [sym_float_literal] = ACTIONS(2652), + [ts_builtin_sym_end] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2632), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_macro_rules_BANG] = ACTIONS(2630), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_u8] = ACTIONS(2632), + [anon_sym_i8] = ACTIONS(2632), + [anon_sym_u16] = ACTIONS(2632), + [anon_sym_i16] = ACTIONS(2632), + [anon_sym_u32] = ACTIONS(2632), + [anon_sym_i32] = ACTIONS(2632), + [anon_sym_u64] = ACTIONS(2632), + [anon_sym_i64] = ACTIONS(2632), + [anon_sym_u128] = ACTIONS(2632), + [anon_sym_i128] = ACTIONS(2632), + [anon_sym_isize] = ACTIONS(2632), + [anon_sym_usize] = ACTIONS(2632), + [anon_sym_f32] = ACTIONS(2632), + [anon_sym_f64] = ACTIONS(2632), + [anon_sym_bool] = ACTIONS(2632), + [anon_sym_str] = ACTIONS(2632), + [anon_sym_char] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_PIPE] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_DOT_DOT] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_POUND] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2632), + [anon_sym_async] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_fn] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_gen] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_impl] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_loop] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_mod] = ACTIONS(2632), + [anon_sym_pub] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2632), + [anon_sym_trait] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2632), + [anon_sym_union] = ACTIONS(2632), + [anon_sym_unsafe] = ACTIONS(2632), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_extern] = ACTIONS(2632), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_move] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [sym_integer_literal] = ACTIONS(2630), + [aux_sym_string_literal_token1] = ACTIONS(2630), + [sym_char_literal] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), + [sym_crate] = ACTIONS(2632), + [sym_metavariable] = ACTIONS(2630), + [sym__raw_string_literal_start] = ACTIONS(2630), + [sym_float_literal] = ACTIONS(2630), }, [STATE(679)] = { - [sym_empty_statement] = STATE(1305), - [sym_macro_definition] = STATE(1305), - [sym_attribute_item] = STATE(1305), - [sym_inner_attribute_item] = STATE(1305), - [sym_mod_item] = STATE(1305), - [sym_foreign_mod_item] = STATE(1305), - [sym_struct_item] = STATE(1305), - [sym_union_item] = STATE(1305), - [sym_enum_item] = STATE(1305), - [sym_extern_crate_declaration] = STATE(1305), - [sym_const_item] = STATE(1305), - [sym_static_item] = STATE(1305), - [sym_type_item] = STATE(1305), - [sym_function_item] = STATE(1305), - [sym_function_signature_item] = STATE(1305), - [sym_function_modifiers] = STATE(3747), - [sym_impl_item] = STATE(1305), - [sym_trait_item] = STATE(1305), - [sym_associated_type] = STATE(1305), - [sym_let_declaration] = STATE(1305), - [sym_use_declaration] = STATE(1305), - [sym_extern_modifier] = STATE(2250), - [sym_visibility_modifier] = STATE(2009), - [sym_bracketed_type] = STATE(3696), - [sym_generic_type_with_turbofish] = STATE(3770), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(3191), [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [aux_sym_declaration_list_repeat1] = STATE(685), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2546), - [anon_sym_fn] = ACTIONS(2548), - [anon_sym_gen] = ACTIONS(2550), - [anon_sym_impl] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_mod] = ACTIONS(2556), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_struct] = ACTIONS(2560), - [anon_sym_trait] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2570), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2578), + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym_macro_rules_BANG] = ACTIONS(2634), + [anon_sym_LPAREN] = ACTIONS(2634), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_u8] = ACTIONS(2636), + [anon_sym_i8] = ACTIONS(2636), + [anon_sym_u16] = ACTIONS(2636), + [anon_sym_i16] = ACTIONS(2636), + [anon_sym_u32] = ACTIONS(2636), + [anon_sym_i32] = ACTIONS(2636), + [anon_sym_u64] = ACTIONS(2636), + [anon_sym_i64] = ACTIONS(2636), + [anon_sym_u128] = ACTIONS(2636), + [anon_sym_i128] = ACTIONS(2636), + [anon_sym_isize] = ACTIONS(2636), + [anon_sym_usize] = ACTIONS(2636), + [anon_sym_f32] = ACTIONS(2636), + [anon_sym_f64] = ACTIONS(2636), + [anon_sym_bool] = ACTIONS(2636), + [anon_sym_str] = ACTIONS(2636), + [anon_sym_char] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_PIPE] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_DOT_DOT] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_POUND] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2636), + [anon_sym_async] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), + [anon_sym_fn] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_gen] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_impl] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_loop] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_mod] = ACTIONS(2636), + [anon_sym_pub] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_trait] = ACTIONS(2636), + [anon_sym_type] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2636), + [anon_sym_unsafe] = ACTIONS(2636), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_extern] = ACTIONS(2636), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_move] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [sym_integer_literal] = ACTIONS(2634), + [aux_sym_string_literal_token1] = ACTIONS(2634), + [sym_char_literal] = ACTIONS(2634), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2636), + [sym_super] = ACTIONS(2636), + [sym_crate] = ACTIONS(2636), + [sym_metavariable] = ACTIONS(2634), + [sym__raw_string_literal_start] = ACTIONS(2634), + [sym_float_literal] = ACTIONS(2634), }, [STATE(680)] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym_macro_rules_BANG] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_u8] = ACTIONS(2640), + [anon_sym_i8] = ACTIONS(2640), + [anon_sym_u16] = ACTIONS(2640), + [anon_sym_i16] = ACTIONS(2640), + [anon_sym_u32] = ACTIONS(2640), + [anon_sym_i32] = ACTIONS(2640), + [anon_sym_u64] = ACTIONS(2640), + [anon_sym_i64] = ACTIONS(2640), + [anon_sym_u128] = ACTIONS(2640), + [anon_sym_i128] = ACTIONS(2640), + [anon_sym_isize] = ACTIONS(2640), + [anon_sym_usize] = ACTIONS(2640), + [anon_sym_f32] = ACTIONS(2640), + [anon_sym_f64] = ACTIONS(2640), + [anon_sym_bool] = ACTIONS(2640), + [anon_sym_str] = ACTIONS(2640), + [anon_sym_char] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2640), + [anon_sym_async] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_fn] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_gen] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_impl] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_loop] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_mod] = ACTIONS(2640), + [anon_sym_pub] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_trait] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_unsafe] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_move] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [sym_integer_literal] = ACTIONS(2638), + [aux_sym_string_literal_token1] = ACTIONS(2638), + [sym_char_literal] = ACTIONS(2638), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2640), + [sym_super] = ACTIONS(2640), + [sym_crate] = ACTIONS(2640), + [sym_metavariable] = ACTIONS(2638), + [sym__raw_string_literal_start] = ACTIONS(2638), + [sym_float_literal] = ACTIONS(2638), + }, + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym_macro_rules_BANG] = ACTIONS(2642), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_u8] = ACTIONS(2644), + [anon_sym_i8] = ACTIONS(2644), + [anon_sym_u16] = ACTIONS(2644), + [anon_sym_i16] = ACTIONS(2644), + [anon_sym_u32] = ACTIONS(2644), + [anon_sym_i32] = ACTIONS(2644), + [anon_sym_u64] = ACTIONS(2644), + [anon_sym_i64] = ACTIONS(2644), + [anon_sym_u128] = ACTIONS(2644), + [anon_sym_i128] = ACTIONS(2644), + [anon_sym_isize] = ACTIONS(2644), + [anon_sym_usize] = ACTIONS(2644), + [anon_sym_f32] = ACTIONS(2644), + [anon_sym_f64] = ACTIONS(2644), + [anon_sym_bool] = ACTIONS(2644), + [anon_sym_str] = ACTIONS(2644), + [anon_sym_char] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_PIPE] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_DOT_DOT] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_async] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), + [anon_sym_fn] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_gen] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_impl] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_loop] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_mod] = ACTIONS(2644), + [anon_sym_pub] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_struct] = ACTIONS(2644), + [anon_sym_trait] = ACTIONS(2644), + [anon_sym_type] = ACTIONS(2644), + [anon_sym_union] = ACTIONS(2644), + [anon_sym_unsafe] = ACTIONS(2644), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_extern] = ACTIONS(2644), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_move] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [sym_integer_literal] = ACTIONS(2642), + [aux_sym_string_literal_token1] = ACTIONS(2642), + [sym_char_literal] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2644), + [sym_super] = ACTIONS(2644), + [sym_crate] = ACTIONS(2644), + [sym_metavariable] = ACTIONS(2642), + [sym__raw_string_literal_start] = ACTIONS(2642), + [sym_float_literal] = ACTIONS(2642), + }, + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym_macro_rules_BANG] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_u8] = ACTIONS(2648), + [anon_sym_i8] = ACTIONS(2648), + [anon_sym_u16] = ACTIONS(2648), + [anon_sym_i16] = ACTIONS(2648), + [anon_sym_u32] = ACTIONS(2648), + [anon_sym_i32] = ACTIONS(2648), + [anon_sym_u64] = ACTIONS(2648), + [anon_sym_i64] = ACTIONS(2648), + [anon_sym_u128] = ACTIONS(2648), + [anon_sym_i128] = ACTIONS(2648), + [anon_sym_isize] = ACTIONS(2648), + [anon_sym_usize] = ACTIONS(2648), + [anon_sym_f32] = ACTIONS(2648), + [anon_sym_f64] = ACTIONS(2648), + [anon_sym_bool] = ACTIONS(2648), + [anon_sym_str] = ACTIONS(2648), + [anon_sym_char] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_PIPE] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_DOT_DOT] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2648), + [anon_sym_async] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), + [anon_sym_fn] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_gen] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_impl] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_loop] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_mod] = ACTIONS(2648), + [anon_sym_pub] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_struct] = ACTIONS(2648), + [anon_sym_trait] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_union] = ACTIONS(2648), + [anon_sym_unsafe] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_move] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [sym_integer_literal] = ACTIONS(2646), + [aux_sym_string_literal_token1] = ACTIONS(2646), + [sym_char_literal] = ACTIONS(2646), + [anon_sym_true] = ACTIONS(2648), + [anon_sym_false] = ACTIONS(2648), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2648), + [sym_super] = ACTIONS(2648), + [sym_crate] = ACTIONS(2648), + [sym_metavariable] = ACTIONS(2646), + [sym__raw_string_literal_start] = ACTIONS(2646), + [sym_float_literal] = ACTIONS(2646), + }, + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym_macro_rules_BANG] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_u8] = ACTIONS(2652), + [anon_sym_i8] = ACTIONS(2652), + [anon_sym_u16] = ACTIONS(2652), + [anon_sym_i16] = ACTIONS(2652), + [anon_sym_u32] = ACTIONS(2652), + [anon_sym_i32] = ACTIONS(2652), + [anon_sym_u64] = ACTIONS(2652), + [anon_sym_i64] = ACTIONS(2652), + [anon_sym_u128] = ACTIONS(2652), + [anon_sym_i128] = ACTIONS(2652), + [anon_sym_isize] = ACTIONS(2652), + [anon_sym_usize] = ACTIONS(2652), + [anon_sym_f32] = ACTIONS(2652), + [anon_sym_f64] = ACTIONS(2652), + [anon_sym_bool] = ACTIONS(2652), + [anon_sym_str] = ACTIONS(2652), + [anon_sym_char] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_PIPE] = ACTIONS(2650), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_DOT_DOT] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), + [anon_sym_fn] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_gen] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_impl] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_loop] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_mod] = ACTIONS(2652), + [anon_sym_pub] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_struct] = ACTIONS(2652), + [anon_sym_trait] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_union] = ACTIONS(2652), + [anon_sym_unsafe] = ACTIONS(2652), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_move] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [sym_integer_literal] = ACTIONS(2650), + [aux_sym_string_literal_token1] = ACTIONS(2650), + [sym_char_literal] = ACTIONS(2650), + [anon_sym_true] = ACTIONS(2652), + [anon_sym_false] = ACTIONS(2652), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2652), + [sym_super] = ACTIONS(2652), + [sym_crate] = ACTIONS(2652), + [sym_metavariable] = ACTIONS(2650), + [sym__raw_string_literal_start] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2650), + }, + [STATE(684)] = { + [sym_attribute_item] = STATE(1145), + [sym_inner_attribute_item] = STATE(1145), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_match_pattern] = STATE(3647), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2909), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [aux_sym_match_arm_repeat1] = STATE(1077), + [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(685)] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_macro_rules_BANG] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_u8] = ACTIONS(2656), + [anon_sym_i8] = ACTIONS(2656), + [anon_sym_u16] = ACTIONS(2656), + [anon_sym_i16] = ACTIONS(2656), + [anon_sym_u32] = ACTIONS(2656), + [anon_sym_i32] = ACTIONS(2656), + [anon_sym_u64] = ACTIONS(2656), + [anon_sym_i64] = ACTIONS(2656), + [anon_sym_u128] = ACTIONS(2656), + [anon_sym_i128] = ACTIONS(2656), + [anon_sym_isize] = ACTIONS(2656), + [anon_sym_usize] = ACTIONS(2656), + [anon_sym_f32] = ACTIONS(2656), + [anon_sym_f64] = ACTIONS(2656), + [anon_sym_bool] = ACTIONS(2656), + [anon_sym_str] = ACTIONS(2656), + [anon_sym_char] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_DOT_DOT] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_gen] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_impl] = ACTIONS(2656), + [anon_sym_let] = ACTIONS(2656), + [anon_sym_loop] = ACTIONS(2656), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_mod] = ACTIONS(2656), + [anon_sym_pub] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_struct] = ACTIONS(2656), + [anon_sym_trait] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_union] = ACTIONS(2656), + [anon_sym_unsafe] = ACTIONS(2656), + [anon_sym_use] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_extern] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_move] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [sym_integer_literal] = ACTIONS(2654), + [aux_sym_string_literal_token1] = ACTIONS(2654), + [sym_char_literal] = ACTIONS(2654), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2656), + [sym_super] = ACTIONS(2656), + [sym_crate] = ACTIONS(2656), + [sym_metavariable] = ACTIONS(2654), + [sym__raw_string_literal_start] = ACTIONS(2654), + [sym_float_literal] = ACTIONS(2654), + }, + [STATE(686)] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2658), [sym_identifier] = ACTIONS(2660), [anon_sym_SEMI] = ACTIONS(2658), @@ -86551,9 +87289,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2658), [sym_float_literal] = ACTIONS(2658), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2662), [sym_identifier] = ACTIONS(2664), [anon_sym_SEMI] = ACTIONS(2662), @@ -86632,9 +87370,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2662), [sym_float_literal] = ACTIONS(2662), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2666), [sym_identifier] = ACTIONS(2668), [anon_sym_SEMI] = ACTIONS(2666), @@ -86713,9 +87451,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2666), [sym_float_literal] = ACTIONS(2666), }, - [STATE(683)] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2670), [sym_identifier] = ACTIONS(2672), [anon_sym_SEMI] = ACTIONS(2670), @@ -86794,9 +87532,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2670), [sym_float_literal] = ACTIONS(2670), }, - [STATE(684)] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2674), [sym_identifier] = ACTIONS(2676), [anon_sym_SEMI] = ACTIONS(2674), @@ -86875,495 +87613,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2674), [sym_float_literal] = ACTIONS(2674), }, - [STATE(685)] = { - [sym_empty_statement] = STATE(1305), - [sym_macro_definition] = STATE(1305), - [sym_attribute_item] = STATE(1305), - [sym_inner_attribute_item] = STATE(1305), - [sym_mod_item] = STATE(1305), - [sym_foreign_mod_item] = STATE(1305), - [sym_struct_item] = STATE(1305), - [sym_union_item] = STATE(1305), - [sym_enum_item] = STATE(1305), - [sym_extern_crate_declaration] = STATE(1305), - [sym_const_item] = STATE(1305), - [sym_static_item] = STATE(1305), - [sym_type_item] = STATE(1305), - [sym_function_item] = STATE(1305), - [sym_function_signature_item] = STATE(1305), - [sym_function_modifiers] = STATE(3747), - [sym_impl_item] = STATE(1305), - [sym_trait_item] = STATE(1305), - [sym_associated_type] = STATE(1305), - [sym_let_declaration] = STATE(1305), - [sym_use_declaration] = STATE(1305), - [sym_extern_modifier] = STATE(2250), - [sym_visibility_modifier] = STATE(2009), - [sym_bracketed_type] = STATE(3696), - [sym_generic_type_with_turbofish] = STATE(3770), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(3191), - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2532), + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [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_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2546), - [anon_sym_fn] = ACTIONS(2548), - [anon_sym_gen] = ACTIONS(2550), - [anon_sym_impl] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_mod] = ACTIONS(2556), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_struct] = ACTIONS(2560), - [anon_sym_trait] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2570), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2578), - }, - [STATE(686)] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2680), - [sym_identifier] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2680), - [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), + [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(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2684), - [sym_identifier] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2684), - [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(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [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(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2688), - [sym_identifier] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2688), - [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(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [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(689)] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2692), - [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(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [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(690)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(3391), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2947), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [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(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2698), [sym_identifier] = ACTIONS(2700), [anon_sym_SEMI] = ACTIONS(2698), @@ -87442,9 +88099,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2698), [sym_float_literal] = ACTIONS(2698), }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2702), [sym_identifier] = ACTIONS(2704), [anon_sym_SEMI] = ACTIONS(2702), @@ -87523,9 +88180,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2702), [sym_float_literal] = ACTIONS(2702), }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2706), [sym_identifier] = ACTIONS(2708), [anon_sym_SEMI] = ACTIONS(2706), @@ -87604,9 +88261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2706), [sym_float_literal] = ACTIONS(2706), }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2710), [sym_identifier] = ACTIONS(2712), [anon_sym_SEMI] = ACTIONS(2710), @@ -87685,9 +88342,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2710), [sym_float_literal] = ACTIONS(2710), }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2714), [sym_identifier] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2714), @@ -87766,9 +88423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2714), [sym_float_literal] = ACTIONS(2714), }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2718), [sym_identifier] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2718), @@ -87847,9 +88504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2718), [sym_float_literal] = ACTIONS(2718), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2722), [sym_identifier] = ACTIONS(2724), [anon_sym_SEMI] = ACTIONS(2722), @@ -87928,4221 +88585,3978 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2722), [sym_float_literal] = ACTIONS(2722), }, - [STATE(698)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(3391), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2947), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), - }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_macro_rules_BANG] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_u8] = ACTIONS(2730), - [anon_sym_i8] = ACTIONS(2730), - [anon_sym_u16] = ACTIONS(2730), - [anon_sym_i16] = ACTIONS(2730), - [anon_sym_u32] = ACTIONS(2730), - [anon_sym_i32] = ACTIONS(2730), - [anon_sym_u64] = ACTIONS(2730), - [anon_sym_i64] = ACTIONS(2730), - [anon_sym_u128] = ACTIONS(2730), - [anon_sym_i128] = ACTIONS(2730), - [anon_sym_isize] = ACTIONS(2730), - [anon_sym_usize] = ACTIONS(2730), - [anon_sym_f32] = ACTIONS(2730), - [anon_sym_f64] = ACTIONS(2730), - [anon_sym_bool] = ACTIONS(2730), - [anon_sym_str] = ACTIONS(2730), - [anon_sym_char] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_DOT_DOT] = ACTIONS(2728), - [anon_sym_COLON_COLON] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2730), - [anon_sym_async] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_default] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_gen] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_impl] = ACTIONS(2730), - [anon_sym_let] = ACTIONS(2730), - [anon_sym_loop] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_mod] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_trait] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_use] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym_yield] = ACTIONS(2730), - [anon_sym_move] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2730), - [sym_integer_literal] = ACTIONS(2728), - [aux_sym_string_literal_token1] = ACTIONS(2728), - [sym_char_literal] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2730), - [anon_sym_false] = ACTIONS(2730), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2730), - [sym_super] = ACTIONS(2730), - [sym_crate] = ACTIONS(2730), - [sym_metavariable] = ACTIONS(2728), - [sym__raw_string_literal_start] = ACTIONS(2728), - [sym_float_literal] = ACTIONS(2728), - }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_macro_rules_BANG] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_RBRACE] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_u8] = ACTIONS(2734), - [anon_sym_i8] = ACTIONS(2734), - [anon_sym_u16] = ACTIONS(2734), - [anon_sym_i16] = ACTIONS(2734), - [anon_sym_u32] = ACTIONS(2734), - [anon_sym_i32] = ACTIONS(2734), - [anon_sym_u64] = ACTIONS(2734), - [anon_sym_i64] = ACTIONS(2734), - [anon_sym_u128] = ACTIONS(2734), - [anon_sym_i128] = ACTIONS(2734), - [anon_sym_isize] = ACTIONS(2734), - [anon_sym_usize] = ACTIONS(2734), - [anon_sym_f32] = ACTIONS(2734), - [anon_sym_f64] = ACTIONS(2734), - [anon_sym_bool] = ACTIONS(2734), - [anon_sym_str] = ACTIONS(2734), - [anon_sym_char] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_DOT_DOT] = ACTIONS(2732), - [anon_sym_COLON_COLON] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2734), - [anon_sym_async] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_default] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_gen] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_impl] = ACTIONS(2734), - [anon_sym_let] = ACTIONS(2734), - [anon_sym_loop] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_mod] = ACTIONS(2734), - [anon_sym_pub] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_trait] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_use] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym_yield] = ACTIONS(2734), - [anon_sym_move] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2734), - [sym_integer_literal] = ACTIONS(2732), - [aux_sym_string_literal_token1] = ACTIONS(2732), - [sym_char_literal] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2734), - [sym_super] = ACTIONS(2734), - [sym_crate] = ACTIONS(2734), - [sym_metavariable] = ACTIONS(2732), - [sym__raw_string_literal_start] = ACTIONS(2732), - [sym_float_literal] = ACTIONS(2732), - }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2736), - [sym_identifier] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_macro_rules_BANG] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_u8] = ACTIONS(2738), - [anon_sym_i8] = ACTIONS(2738), - [anon_sym_u16] = ACTIONS(2738), - [anon_sym_i16] = ACTIONS(2738), - [anon_sym_u32] = ACTIONS(2738), - [anon_sym_i32] = ACTIONS(2738), - [anon_sym_u64] = ACTIONS(2738), - [anon_sym_i64] = ACTIONS(2738), - [anon_sym_u128] = ACTIONS(2738), - [anon_sym_i128] = ACTIONS(2738), - [anon_sym_isize] = ACTIONS(2738), - [anon_sym_usize] = ACTIONS(2738), - [anon_sym_f32] = ACTIONS(2738), - [anon_sym_f64] = ACTIONS(2738), - [anon_sym_bool] = ACTIONS(2738), - [anon_sym_str] = ACTIONS(2738), - [anon_sym_char] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), - [anon_sym_fn] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_gen] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_impl] = ACTIONS(2738), - [anon_sym_let] = ACTIONS(2738), - [anon_sym_loop] = ACTIONS(2738), - [anon_sym_match] = ACTIONS(2738), - [anon_sym_mod] = ACTIONS(2738), - [anon_sym_pub] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2738), - [anon_sym_trait] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_union] = ACTIONS(2738), - [anon_sym_unsafe] = ACTIONS(2738), - [anon_sym_use] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_extern] = ACTIONS(2738), - [anon_sym_yield] = ACTIONS(2738), - [anon_sym_move] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [sym_integer_literal] = ACTIONS(2736), - [aux_sym_string_literal_token1] = ACTIONS(2736), - [sym_char_literal] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2738), - [anon_sym_false] = ACTIONS(2738), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2738), - [sym_super] = ACTIONS(2738), - [sym_crate] = ACTIONS(2738), - [sym_metavariable] = ACTIONS(2736), - [sym__raw_string_literal_start] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2740), - [sym_identifier] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_macro_rules_BANG] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_u8] = ACTIONS(2742), - [anon_sym_i8] = ACTIONS(2742), - [anon_sym_u16] = ACTIONS(2742), - [anon_sym_i16] = ACTIONS(2742), - [anon_sym_u32] = ACTIONS(2742), - [anon_sym_i32] = ACTIONS(2742), - [anon_sym_u64] = ACTIONS(2742), - [anon_sym_i64] = ACTIONS(2742), - [anon_sym_u128] = ACTIONS(2742), - [anon_sym_i128] = ACTIONS(2742), - [anon_sym_isize] = ACTIONS(2742), - [anon_sym_usize] = ACTIONS(2742), - [anon_sym_f32] = ACTIONS(2742), - [anon_sym_f64] = ACTIONS(2742), - [anon_sym_bool] = ACTIONS(2742), - [anon_sym_str] = ACTIONS(2742), - [anon_sym_char] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_DOT_DOT] = ACTIONS(2740), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_async] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), - [anon_sym_fn] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_gen] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_impl] = ACTIONS(2742), - [anon_sym_let] = ACTIONS(2742), - [anon_sym_loop] = ACTIONS(2742), - [anon_sym_match] = ACTIONS(2742), - [anon_sym_mod] = ACTIONS(2742), - [anon_sym_pub] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2742), - [anon_sym_trait] = ACTIONS(2742), - [anon_sym_type] = ACTIONS(2742), - [anon_sym_union] = ACTIONS(2742), - [anon_sym_unsafe] = ACTIONS(2742), - [anon_sym_use] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_extern] = ACTIONS(2742), - [anon_sym_yield] = ACTIONS(2742), - [anon_sym_move] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [sym_integer_literal] = ACTIONS(2740), - [aux_sym_string_literal_token1] = ACTIONS(2740), - [sym_char_literal] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2742), - [anon_sym_false] = ACTIONS(2742), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2742), - [sym_super] = ACTIONS(2742), - [sym_crate] = ACTIONS(2742), - [sym_metavariable] = ACTIONS(2740), - [sym__raw_string_literal_start] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - }, [STATE(703)] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2744), - [sym_identifier] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_macro_rules_BANG] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_u8] = ACTIONS(2746), - [anon_sym_i8] = ACTIONS(2746), - [anon_sym_u16] = ACTIONS(2746), - [anon_sym_i16] = ACTIONS(2746), - [anon_sym_u32] = ACTIONS(2746), - [anon_sym_i32] = ACTIONS(2746), - [anon_sym_u64] = ACTIONS(2746), - [anon_sym_i64] = ACTIONS(2746), - [anon_sym_u128] = ACTIONS(2746), - [anon_sym_i128] = ACTIONS(2746), - [anon_sym_isize] = ACTIONS(2746), - [anon_sym_usize] = ACTIONS(2746), - [anon_sym_f32] = ACTIONS(2746), - [anon_sym_f64] = ACTIONS(2746), - [anon_sym_bool] = ACTIONS(2746), - [anon_sym_str] = ACTIONS(2746), - [anon_sym_char] = ACTIONS(2746), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_DOT_DOT] = ACTIONS(2744), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2746), - [anon_sym_async] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), - [anon_sym_fn] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_gen] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_impl] = ACTIONS(2746), - [anon_sym_let] = ACTIONS(2746), - [anon_sym_loop] = ACTIONS(2746), - [anon_sym_match] = ACTIONS(2746), - [anon_sym_mod] = ACTIONS(2746), - [anon_sym_pub] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2746), - [anon_sym_trait] = ACTIONS(2746), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_union] = ACTIONS(2746), - [anon_sym_unsafe] = ACTIONS(2746), - [anon_sym_use] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_extern] = ACTIONS(2746), - [anon_sym_yield] = ACTIONS(2746), - [anon_sym_move] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [sym_integer_literal] = ACTIONS(2744), - [aux_sym_string_literal_token1] = ACTIONS(2744), - [sym_char_literal] = ACTIONS(2744), - [anon_sym_true] = ACTIONS(2746), - [anon_sym_false] = ACTIONS(2746), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2746), - [sym_super] = ACTIONS(2746), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(2744), - [sym__raw_string_literal_start] = ACTIONS(2744), - [sym_float_literal] = ACTIONS(2744), + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_macro_rules_BANG] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2728), + [anon_sym_i8] = ACTIONS(2728), + [anon_sym_u16] = ACTIONS(2728), + [anon_sym_i16] = ACTIONS(2728), + [anon_sym_u32] = ACTIONS(2728), + [anon_sym_i32] = ACTIONS(2728), + [anon_sym_u64] = ACTIONS(2728), + [anon_sym_i64] = ACTIONS(2728), + [anon_sym_u128] = ACTIONS(2728), + [anon_sym_i128] = ACTIONS(2728), + [anon_sym_isize] = ACTIONS(2728), + [anon_sym_usize] = ACTIONS(2728), + [anon_sym_f32] = ACTIONS(2728), + [anon_sym_f64] = ACTIONS(2728), + [anon_sym_bool] = ACTIONS(2728), + [anon_sym_str] = ACTIONS(2728), + [anon_sym_char] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_COLON_COLON] = ACTIONS(2726), + [anon_sym_POUND] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_gen] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_impl] = ACTIONS(2728), + [anon_sym_let] = ACTIONS(2728), + [anon_sym_loop] = ACTIONS(2728), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_mod] = ACTIONS(2728), + [anon_sym_pub] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_trait] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_use] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym_yield] = ACTIONS(2728), + [anon_sym_move] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2728), + [sym_integer_literal] = ACTIONS(2726), + [aux_sym_string_literal_token1] = ACTIONS(2726), + [sym_char_literal] = ACTIONS(2726), + [anon_sym_true] = ACTIONS(2728), + [anon_sym_false] = ACTIONS(2728), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2728), + [sym_super] = ACTIONS(2728), + [sym_crate] = ACTIONS(2728), + [sym_metavariable] = ACTIONS(2726), + [sym__raw_string_literal_start] = ACTIONS(2726), + [sym_float_literal] = ACTIONS(2726), }, [STATE(704)] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_macro_rules_BANG] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_u8] = ACTIONS(2750), - [anon_sym_i8] = ACTIONS(2750), - [anon_sym_u16] = ACTIONS(2750), - [anon_sym_i16] = ACTIONS(2750), - [anon_sym_u32] = ACTIONS(2750), - [anon_sym_i32] = ACTIONS(2750), - [anon_sym_u64] = ACTIONS(2750), - [anon_sym_i64] = ACTIONS(2750), - [anon_sym_u128] = ACTIONS(2750), - [anon_sym_i128] = ACTIONS(2750), - [anon_sym_isize] = ACTIONS(2750), - [anon_sym_usize] = ACTIONS(2750), - [anon_sym_f32] = ACTIONS(2750), - [anon_sym_f64] = ACTIONS(2750), - [anon_sym_bool] = ACTIONS(2750), - [anon_sym_str] = ACTIONS(2750), - [anon_sym_char] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2748), - [anon_sym_COLON_COLON] = ACTIONS(2748), - [anon_sym_POUND] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2750), - [anon_sym_async] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_fn] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_gen] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_impl] = ACTIONS(2750), - [anon_sym_let] = ACTIONS(2750), - [anon_sym_loop] = ACTIONS(2750), - [anon_sym_match] = ACTIONS(2750), - [anon_sym_mod] = ACTIONS(2750), - [anon_sym_pub] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_trait] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_use] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym_yield] = ACTIONS(2750), - [anon_sym_move] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [sym_integer_literal] = ACTIONS(2748), - [aux_sym_string_literal_token1] = ACTIONS(2748), - [sym_char_literal] = ACTIONS(2748), - [anon_sym_true] = ACTIONS(2750), - [anon_sym_false] = ACTIONS(2750), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2750), - [sym_super] = ACTIONS(2750), - [sym_crate] = ACTIONS(2750), - [sym_metavariable] = ACTIONS(2748), - [sym__raw_string_literal_start] = ACTIONS(2748), - [sym_float_literal] = ACTIONS(2748), + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_macro_rules_BANG] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_u8] = ACTIONS(2732), + [anon_sym_i8] = ACTIONS(2732), + [anon_sym_u16] = ACTIONS(2732), + [anon_sym_i16] = ACTIONS(2732), + [anon_sym_u32] = ACTIONS(2732), + [anon_sym_i32] = ACTIONS(2732), + [anon_sym_u64] = ACTIONS(2732), + [anon_sym_i64] = ACTIONS(2732), + [anon_sym_u128] = ACTIONS(2732), + [anon_sym_i128] = ACTIONS(2732), + [anon_sym_isize] = ACTIONS(2732), + [anon_sym_usize] = ACTIONS(2732), + [anon_sym_f32] = ACTIONS(2732), + [anon_sym_f64] = ACTIONS(2732), + [anon_sym_bool] = ACTIONS(2732), + [anon_sym_str] = ACTIONS(2732), + [anon_sym_char] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_DOT_DOT] = ACTIONS(2730), + [anon_sym_COLON_COLON] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2732), + [anon_sym_async] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_fn] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_gen] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_impl] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_loop] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_mod] = ACTIONS(2732), + [anon_sym_pub] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_trait] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_unsafe] = ACTIONS(2732), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_move] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [sym_integer_literal] = ACTIONS(2730), + [aux_sym_string_literal_token1] = ACTIONS(2730), + [sym_char_literal] = ACTIONS(2730), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2732), + [sym_super] = ACTIONS(2732), + [sym_crate] = ACTIONS(2732), + [sym_metavariable] = ACTIONS(2730), + [sym__raw_string_literal_start] = ACTIONS(2730), + [sym_float_literal] = ACTIONS(2730), }, [STATE(705)] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2752), - [sym_identifier] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_macro_rules_BANG] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_u8] = ACTIONS(2754), - [anon_sym_i8] = ACTIONS(2754), - [anon_sym_u16] = ACTIONS(2754), - [anon_sym_i16] = ACTIONS(2754), - [anon_sym_u32] = ACTIONS(2754), - [anon_sym_i32] = ACTIONS(2754), - [anon_sym_u64] = ACTIONS(2754), - [anon_sym_i64] = ACTIONS(2754), - [anon_sym_u128] = ACTIONS(2754), - [anon_sym_i128] = ACTIONS(2754), - [anon_sym_isize] = ACTIONS(2754), - [anon_sym_usize] = ACTIONS(2754), - [anon_sym_f32] = ACTIONS(2754), - [anon_sym_f64] = ACTIONS(2754), - [anon_sym_bool] = ACTIONS(2754), - [anon_sym_str] = ACTIONS(2754), - [anon_sym_char] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_DOT_DOT] = ACTIONS(2752), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2754), - [anon_sym_async] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_fn] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_gen] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_impl] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_loop] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_mod] = ACTIONS(2754), - [anon_sym_pub] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_trait] = ACTIONS(2754), - [anon_sym_type] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_unsafe] = ACTIONS(2754), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_move] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [sym_integer_literal] = ACTIONS(2752), - [aux_sym_string_literal_token1] = ACTIONS(2752), - [sym_char_literal] = ACTIONS(2752), - [anon_sym_true] = ACTIONS(2754), - [anon_sym_false] = ACTIONS(2754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2754), - [sym_super] = ACTIONS(2754), - [sym_crate] = ACTIONS(2754), - [sym_metavariable] = ACTIONS(2752), - [sym__raw_string_literal_start] = ACTIONS(2752), - [sym_float_literal] = ACTIONS(2752), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_macro_rules_BANG] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_u8] = ACTIONS(2736), + [anon_sym_i8] = ACTIONS(2736), + [anon_sym_u16] = ACTIONS(2736), + [anon_sym_i16] = ACTIONS(2736), + [anon_sym_u32] = ACTIONS(2736), + [anon_sym_i32] = ACTIONS(2736), + [anon_sym_u64] = ACTIONS(2736), + [anon_sym_i64] = ACTIONS(2736), + [anon_sym_u128] = ACTIONS(2736), + [anon_sym_i128] = ACTIONS(2736), + [anon_sym_isize] = ACTIONS(2736), + [anon_sym_usize] = ACTIONS(2736), + [anon_sym_f32] = ACTIONS(2736), + [anon_sym_f64] = ACTIONS(2736), + [anon_sym_bool] = ACTIONS(2736), + [anon_sym_str] = ACTIONS(2736), + [anon_sym_char] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2736), + [anon_sym_async] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_gen] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_impl] = ACTIONS(2736), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_loop] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_mod] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_trait] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_use] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_yield] = ACTIONS(2736), + [anon_sym_move] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2736), + [sym_integer_literal] = ACTIONS(2734), + [aux_sym_string_literal_token1] = ACTIONS(2734), + [sym_char_literal] = ACTIONS(2734), + [anon_sym_true] = ACTIONS(2736), + [anon_sym_false] = ACTIONS(2736), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2736), + [sym_super] = ACTIONS(2736), + [sym_crate] = ACTIONS(2736), + [sym_metavariable] = ACTIONS(2734), + [sym__raw_string_literal_start] = ACTIONS(2734), + [sym_float_literal] = ACTIONS(2734), }, [STATE(706)] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_macro_rules_BANG] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_u8] = ACTIONS(2758), - [anon_sym_i8] = ACTIONS(2758), - [anon_sym_u16] = ACTIONS(2758), - [anon_sym_i16] = ACTIONS(2758), - [anon_sym_u32] = ACTIONS(2758), - [anon_sym_i32] = ACTIONS(2758), - [anon_sym_u64] = ACTIONS(2758), - [anon_sym_i64] = ACTIONS(2758), - [anon_sym_u128] = ACTIONS(2758), - [anon_sym_i128] = ACTIONS(2758), - [anon_sym_isize] = ACTIONS(2758), - [anon_sym_usize] = ACTIONS(2758), - [anon_sym_f32] = ACTIONS(2758), - [anon_sym_f64] = ACTIONS(2758), - [anon_sym_bool] = ACTIONS(2758), - [anon_sym_str] = ACTIONS(2758), - [anon_sym_char] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_DOT_DOT] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2758), - [anon_sym_async] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_fn] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_gen] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_impl] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2758), - [anon_sym_loop] = ACTIONS(2758), - [anon_sym_match] = ACTIONS(2758), - [anon_sym_mod] = ACTIONS(2758), - [anon_sym_pub] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_trait] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_unsafe] = ACTIONS(2758), - [anon_sym_use] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_extern] = ACTIONS(2758), - [anon_sym_yield] = ACTIONS(2758), - [anon_sym_move] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [sym_integer_literal] = ACTIONS(2756), - [aux_sym_string_literal_token1] = ACTIONS(2756), - [sym_char_literal] = ACTIONS(2756), - [anon_sym_true] = ACTIONS(2758), - [anon_sym_false] = ACTIONS(2758), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2758), - [sym_super] = ACTIONS(2758), - [sym_crate] = ACTIONS(2758), - [sym_metavariable] = ACTIONS(2756), - [sym__raw_string_literal_start] = ACTIONS(2756), - [sym_float_literal] = ACTIONS(2756), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_macro_rules_BANG] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_u8] = ACTIONS(2740), + [anon_sym_i8] = ACTIONS(2740), + [anon_sym_u16] = ACTIONS(2740), + [anon_sym_i16] = ACTIONS(2740), + [anon_sym_u32] = ACTIONS(2740), + [anon_sym_i32] = ACTIONS(2740), + [anon_sym_u64] = ACTIONS(2740), + [anon_sym_i64] = ACTIONS(2740), + [anon_sym_u128] = ACTIONS(2740), + [anon_sym_i128] = ACTIONS(2740), + [anon_sym_isize] = ACTIONS(2740), + [anon_sym_usize] = ACTIONS(2740), + [anon_sym_f32] = ACTIONS(2740), + [anon_sym_f64] = ACTIONS(2740), + [anon_sym_bool] = ACTIONS(2740), + [anon_sym_str] = ACTIONS(2740), + [anon_sym_char] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_DOT_DOT] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_gen] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_impl] = ACTIONS(2740), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_loop] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_mod] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_trait] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_use] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym_yield] = ACTIONS(2740), + [anon_sym_move] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [sym_integer_literal] = ACTIONS(2738), + [aux_sym_string_literal_token1] = ACTIONS(2738), + [sym_char_literal] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2740), + [sym_super] = ACTIONS(2740), + [sym_crate] = ACTIONS(2740), + [sym_metavariable] = ACTIONS(2738), + [sym__raw_string_literal_start] = ACTIONS(2738), + [sym_float_literal] = ACTIONS(2738), }, [STATE(707)] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2760), - [sym_identifier] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_macro_rules_BANG] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_u8] = ACTIONS(2762), - [anon_sym_i8] = ACTIONS(2762), - [anon_sym_u16] = ACTIONS(2762), - [anon_sym_i16] = ACTIONS(2762), - [anon_sym_u32] = ACTIONS(2762), - [anon_sym_i32] = ACTIONS(2762), - [anon_sym_u64] = ACTIONS(2762), - [anon_sym_i64] = ACTIONS(2762), - [anon_sym_u128] = ACTIONS(2762), - [anon_sym_i128] = ACTIONS(2762), - [anon_sym_isize] = ACTIONS(2762), - [anon_sym_usize] = ACTIONS(2762), - [anon_sym_f32] = ACTIONS(2762), - [anon_sym_f64] = ACTIONS(2762), - [anon_sym_bool] = ACTIONS(2762), - [anon_sym_str] = ACTIONS(2762), - [anon_sym_char] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2760), - [anon_sym_COLON_COLON] = ACTIONS(2760), - [anon_sym_POUND] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_fn] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_gen] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_impl] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_loop] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(2762), - [anon_sym_mod] = ACTIONS(2762), - [anon_sym_pub] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_trait] = ACTIONS(2762), - [anon_sym_type] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_unsafe] = ACTIONS(2762), - [anon_sym_use] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym_yield] = ACTIONS(2762), - [anon_sym_move] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [sym_integer_literal] = ACTIONS(2760), - [aux_sym_string_literal_token1] = ACTIONS(2760), - [sym_char_literal] = ACTIONS(2760), - [anon_sym_true] = ACTIONS(2762), - [anon_sym_false] = ACTIONS(2762), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2762), - [sym_super] = ACTIONS(2762), - [sym_crate] = ACTIONS(2762), - [sym_metavariable] = ACTIONS(2760), - [sym__raw_string_literal_start] = ACTIONS(2760), - [sym_float_literal] = ACTIONS(2760), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_macro_rules_BANG] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_u8] = ACTIONS(2744), + [anon_sym_i8] = ACTIONS(2744), + [anon_sym_u16] = ACTIONS(2744), + [anon_sym_i16] = ACTIONS(2744), + [anon_sym_u32] = ACTIONS(2744), + [anon_sym_i32] = ACTIONS(2744), + [anon_sym_u64] = ACTIONS(2744), + [anon_sym_i64] = ACTIONS(2744), + [anon_sym_u128] = ACTIONS(2744), + [anon_sym_i128] = ACTIONS(2744), + [anon_sym_isize] = ACTIONS(2744), + [anon_sym_usize] = ACTIONS(2744), + [anon_sym_f32] = ACTIONS(2744), + [anon_sym_f64] = ACTIONS(2744), + [anon_sym_bool] = ACTIONS(2744), + [anon_sym_str] = ACTIONS(2744), + [anon_sym_char] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_DOT_DOT] = ACTIONS(2742), + [anon_sym_COLON_COLON] = ACTIONS(2742), + [anon_sym_POUND] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_gen] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_impl] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_loop] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_mod] = ACTIONS(2744), + [anon_sym_pub] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_trait] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_move] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [sym_integer_literal] = ACTIONS(2742), + [aux_sym_string_literal_token1] = ACTIONS(2742), + [sym_char_literal] = ACTIONS(2742), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_crate] = ACTIONS(2744), + [sym_metavariable] = ACTIONS(2742), + [sym__raw_string_literal_start] = ACTIONS(2742), + [sym_float_literal] = ACTIONS(2742), }, [STATE(708)] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2764), - [sym_identifier] = ACTIONS(2766), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_macro_rules_BANG] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_u8] = ACTIONS(2766), - [anon_sym_i8] = ACTIONS(2766), - [anon_sym_u16] = ACTIONS(2766), - [anon_sym_i16] = ACTIONS(2766), - [anon_sym_u32] = ACTIONS(2766), - [anon_sym_i32] = ACTIONS(2766), - [anon_sym_u64] = ACTIONS(2766), - [anon_sym_i64] = ACTIONS(2766), - [anon_sym_u128] = ACTIONS(2766), - [anon_sym_i128] = ACTIONS(2766), - [anon_sym_isize] = ACTIONS(2766), - [anon_sym_usize] = ACTIONS(2766), - [anon_sym_f32] = ACTIONS(2766), - [anon_sym_f64] = ACTIONS(2766), - [anon_sym_bool] = ACTIONS(2766), - [anon_sym_str] = ACTIONS(2766), - [anon_sym_char] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_DOT_DOT] = ACTIONS(2764), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2766), - [anon_sym_async] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_gen] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_impl] = ACTIONS(2766), - [anon_sym_let] = ACTIONS(2766), - [anon_sym_loop] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_mod] = ACTIONS(2766), - [anon_sym_pub] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_trait] = ACTIONS(2766), - [anon_sym_type] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_use] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2766), - [anon_sym_extern] = ACTIONS(2766), - [anon_sym_yield] = ACTIONS(2766), - [anon_sym_move] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2766), - [sym_integer_literal] = ACTIONS(2764), - [aux_sym_string_literal_token1] = ACTIONS(2764), - [sym_char_literal] = ACTIONS(2764), - [anon_sym_true] = ACTIONS(2766), - [anon_sym_false] = ACTIONS(2766), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2766), - [sym_super] = ACTIONS(2766), - [sym_crate] = ACTIONS(2766), - [sym_metavariable] = ACTIONS(2764), - [sym__raw_string_literal_start] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_macro_rules_BANG] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_u8] = ACTIONS(2748), + [anon_sym_i8] = ACTIONS(2748), + [anon_sym_u16] = ACTIONS(2748), + [anon_sym_i16] = ACTIONS(2748), + [anon_sym_u32] = ACTIONS(2748), + [anon_sym_i32] = ACTIONS(2748), + [anon_sym_u64] = ACTIONS(2748), + [anon_sym_i64] = ACTIONS(2748), + [anon_sym_u128] = ACTIONS(2748), + [anon_sym_i128] = ACTIONS(2748), + [anon_sym_isize] = ACTIONS(2748), + [anon_sym_usize] = ACTIONS(2748), + [anon_sym_f32] = ACTIONS(2748), + [anon_sym_f64] = ACTIONS(2748), + [anon_sym_bool] = ACTIONS(2748), + [anon_sym_str] = ACTIONS(2748), + [anon_sym_char] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2746), + [anon_sym_COLON_COLON] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2748), + [anon_sym_async] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_gen] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_impl] = ACTIONS(2748), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_loop] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_mod] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_trait] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_use] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym_yield] = ACTIONS(2748), + [anon_sym_move] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [sym_integer_literal] = ACTIONS(2746), + [aux_sym_string_literal_token1] = ACTIONS(2746), + [sym_char_literal] = ACTIONS(2746), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2748), + [sym_super] = ACTIONS(2748), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(2746), + [sym__raw_string_literal_start] = ACTIONS(2746), + [sym_float_literal] = ACTIONS(2746), }, [STATE(709)] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_macro_rules_BANG] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_u8] = ACTIONS(2770), - [anon_sym_i8] = ACTIONS(2770), - [anon_sym_u16] = ACTIONS(2770), - [anon_sym_i16] = ACTIONS(2770), - [anon_sym_u32] = ACTIONS(2770), - [anon_sym_i32] = ACTIONS(2770), - [anon_sym_u64] = ACTIONS(2770), - [anon_sym_i64] = ACTIONS(2770), - [anon_sym_u128] = ACTIONS(2770), - [anon_sym_i128] = ACTIONS(2770), - [anon_sym_isize] = ACTIONS(2770), - [anon_sym_usize] = ACTIONS(2770), - [anon_sym_f32] = ACTIONS(2770), - [anon_sym_f64] = ACTIONS(2770), - [anon_sym_bool] = ACTIONS(2770), - [anon_sym_str] = ACTIONS(2770), - [anon_sym_char] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_DOT_DOT] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_async] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [anon_sym_fn] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_gen] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_impl] = ACTIONS(2770), - [anon_sym_let] = ACTIONS(2770), - [anon_sym_loop] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2770), - [anon_sym_mod] = ACTIONS(2770), - [anon_sym_pub] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2770), - [anon_sym_trait] = ACTIONS(2770), - [anon_sym_type] = ACTIONS(2770), - [anon_sym_union] = ACTIONS(2770), - [anon_sym_unsafe] = ACTIONS(2770), - [anon_sym_use] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_extern] = ACTIONS(2770), - [anon_sym_yield] = ACTIONS(2770), - [anon_sym_move] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [sym_integer_literal] = ACTIONS(2768), - [aux_sym_string_literal_token1] = ACTIONS(2768), - [sym_char_literal] = ACTIONS(2768), - [anon_sym_true] = ACTIONS(2770), - [anon_sym_false] = ACTIONS(2770), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2770), - [sym_super] = ACTIONS(2770), - [sym_crate] = ACTIONS(2770), - [sym_metavariable] = ACTIONS(2768), - [sym__raw_string_literal_start] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2768), + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_macro_rules_BANG] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_u8] = ACTIONS(2752), + [anon_sym_i8] = ACTIONS(2752), + [anon_sym_u16] = ACTIONS(2752), + [anon_sym_i16] = ACTIONS(2752), + [anon_sym_u32] = ACTIONS(2752), + [anon_sym_i32] = ACTIONS(2752), + [anon_sym_u64] = ACTIONS(2752), + [anon_sym_i64] = ACTIONS(2752), + [anon_sym_u128] = ACTIONS(2752), + [anon_sym_i128] = ACTIONS(2752), + [anon_sym_isize] = ACTIONS(2752), + [anon_sym_usize] = ACTIONS(2752), + [anon_sym_f32] = ACTIONS(2752), + [anon_sym_f64] = ACTIONS(2752), + [anon_sym_bool] = ACTIONS(2752), + [anon_sym_str] = ACTIONS(2752), + [anon_sym_char] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_DOT_DOT] = ACTIONS(2750), + [anon_sym_COLON_COLON] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_fn] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_gen] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_impl] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_loop] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_mod] = ACTIONS(2752), + [anon_sym_pub] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_trait] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_unsafe] = ACTIONS(2752), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_move] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [sym_integer_literal] = ACTIONS(2750), + [aux_sym_string_literal_token1] = ACTIONS(2750), + [sym_char_literal] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2752), + [sym_super] = ACTIONS(2752), + [sym_crate] = ACTIONS(2752), + [sym_metavariable] = ACTIONS(2750), + [sym__raw_string_literal_start] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), }, [STATE(710)] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2772), - [sym_identifier] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_macro_rules_BANG] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_u8] = ACTIONS(2774), - [anon_sym_i8] = ACTIONS(2774), - [anon_sym_u16] = ACTIONS(2774), - [anon_sym_i16] = ACTIONS(2774), - [anon_sym_u32] = ACTIONS(2774), - [anon_sym_i32] = ACTIONS(2774), - [anon_sym_u64] = ACTIONS(2774), - [anon_sym_i64] = ACTIONS(2774), - [anon_sym_u128] = ACTIONS(2774), - [anon_sym_i128] = ACTIONS(2774), - [anon_sym_isize] = ACTIONS(2774), - [anon_sym_usize] = ACTIONS(2774), - [anon_sym_f32] = ACTIONS(2774), - [anon_sym_f64] = ACTIONS(2774), - [anon_sym_bool] = ACTIONS(2774), - [anon_sym_str] = ACTIONS(2774), - [anon_sym_char] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [anon_sym_COLON_COLON] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2774), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_fn] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_gen] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_impl] = ACTIONS(2774), - [anon_sym_let] = ACTIONS(2774), - [anon_sym_loop] = ACTIONS(2774), - [anon_sym_match] = ACTIONS(2774), - [anon_sym_mod] = ACTIONS(2774), - [anon_sym_pub] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_trait] = ACTIONS(2774), - [anon_sym_type] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_unsafe] = ACTIONS(2774), - [anon_sym_use] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym_yield] = ACTIONS(2774), - [anon_sym_move] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [sym_integer_literal] = ACTIONS(2772), - [aux_sym_string_literal_token1] = ACTIONS(2772), - [sym_char_literal] = ACTIONS(2772), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2774), - [sym_super] = ACTIONS(2774), - [sym_crate] = ACTIONS(2774), - [sym_metavariable] = ACTIONS(2772), - [sym__raw_string_literal_start] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_macro_rules_BANG] = ACTIONS(2754), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_u8] = ACTIONS(2756), + [anon_sym_i8] = ACTIONS(2756), + [anon_sym_u16] = ACTIONS(2756), + [anon_sym_i16] = ACTIONS(2756), + [anon_sym_u32] = ACTIONS(2756), + [anon_sym_i32] = ACTIONS(2756), + [anon_sym_u64] = ACTIONS(2756), + [anon_sym_i64] = ACTIONS(2756), + [anon_sym_u128] = ACTIONS(2756), + [anon_sym_i128] = ACTIONS(2756), + [anon_sym_isize] = ACTIONS(2756), + [anon_sym_usize] = ACTIONS(2756), + [anon_sym_f32] = ACTIONS(2756), + [anon_sym_f64] = ACTIONS(2756), + [anon_sym_bool] = ACTIONS(2756), + [anon_sym_str] = ACTIONS(2756), + [anon_sym_char] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_async] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_gen] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_impl] = ACTIONS(2756), + [anon_sym_let] = ACTIONS(2756), + [anon_sym_loop] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_mod] = ACTIONS(2756), + [anon_sym_pub] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_trait] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_use] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym_yield] = ACTIONS(2756), + [anon_sym_move] = ACTIONS(2756), + [anon_sym_try] = ACTIONS(2756), + [sym_integer_literal] = ACTIONS(2754), + [aux_sym_string_literal_token1] = ACTIONS(2754), + [sym_char_literal] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2756), + [anon_sym_false] = ACTIONS(2756), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2756), + [sym_super] = ACTIONS(2756), + [sym_crate] = ACTIONS(2756), + [sym_metavariable] = ACTIONS(2754), + [sym__raw_string_literal_start] = ACTIONS(2754), + [sym_float_literal] = ACTIONS(2754), }, [STATE(711)] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_macro_rules_BANG] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_u8] = ACTIONS(2778), - [anon_sym_i8] = ACTIONS(2778), - [anon_sym_u16] = ACTIONS(2778), - [anon_sym_i16] = ACTIONS(2778), - [anon_sym_u32] = ACTIONS(2778), - [anon_sym_i32] = ACTIONS(2778), - [anon_sym_u64] = ACTIONS(2778), - [anon_sym_i64] = ACTIONS(2778), - [anon_sym_u128] = ACTIONS(2778), - [anon_sym_i128] = ACTIONS(2778), - [anon_sym_isize] = ACTIONS(2778), - [anon_sym_usize] = ACTIONS(2778), - [anon_sym_f32] = ACTIONS(2778), - [anon_sym_f64] = ACTIONS(2778), - [anon_sym_bool] = ACTIONS(2778), - [anon_sym_str] = ACTIONS(2778), - [anon_sym_char] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_DOT_DOT] = ACTIONS(2776), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_async] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_gen] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_impl] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_loop] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_mod] = ACTIONS(2778), - [anon_sym_pub] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_trait] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2778), - [anon_sym_move] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [sym_integer_literal] = ACTIONS(2776), - [aux_sym_string_literal_token1] = ACTIONS(2776), - [sym_char_literal] = ACTIONS(2776), - [anon_sym_true] = ACTIONS(2778), - [anon_sym_false] = ACTIONS(2778), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2778), - [sym_super] = ACTIONS(2778), - [sym_crate] = ACTIONS(2778), - [sym_metavariable] = ACTIONS(2776), - [sym__raw_string_literal_start] = ACTIONS(2776), - [sym_float_literal] = ACTIONS(2776), + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_macro_rules_BANG] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_u8] = ACTIONS(2760), + [anon_sym_i8] = ACTIONS(2760), + [anon_sym_u16] = ACTIONS(2760), + [anon_sym_i16] = ACTIONS(2760), + [anon_sym_u32] = ACTIONS(2760), + [anon_sym_i32] = ACTIONS(2760), + [anon_sym_u64] = ACTIONS(2760), + [anon_sym_i64] = ACTIONS(2760), + [anon_sym_u128] = ACTIONS(2760), + [anon_sym_i128] = ACTIONS(2760), + [anon_sym_isize] = ACTIONS(2760), + [anon_sym_usize] = ACTIONS(2760), + [anon_sym_f32] = ACTIONS(2760), + [anon_sym_f64] = ACTIONS(2760), + [anon_sym_bool] = ACTIONS(2760), + [anon_sym_str] = ACTIONS(2760), + [anon_sym_char] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_fn] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_gen] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_impl] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_loop] = ACTIONS(2760), + [anon_sym_match] = ACTIONS(2760), + [anon_sym_mod] = ACTIONS(2760), + [anon_sym_pub] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_trait] = ACTIONS(2760), + [anon_sym_type] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_unsafe] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2760), + [anon_sym_move] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2760), + [sym_integer_literal] = ACTIONS(2758), + [aux_sym_string_literal_token1] = ACTIONS(2758), + [sym_char_literal] = ACTIONS(2758), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2760), + [sym_super] = ACTIONS(2760), + [sym_crate] = ACTIONS(2760), + [sym_metavariable] = ACTIONS(2758), + [sym__raw_string_literal_start] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2758), }, [STATE(712)] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_macro_rules_BANG] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_u8] = ACTIONS(2782), - [anon_sym_i8] = ACTIONS(2782), - [anon_sym_u16] = ACTIONS(2782), - [anon_sym_i16] = ACTIONS(2782), - [anon_sym_u32] = ACTIONS(2782), - [anon_sym_i32] = ACTIONS(2782), - [anon_sym_u64] = ACTIONS(2782), - [anon_sym_i64] = ACTIONS(2782), - [anon_sym_u128] = ACTIONS(2782), - [anon_sym_i128] = ACTIONS(2782), - [anon_sym_isize] = ACTIONS(2782), - [anon_sym_usize] = ACTIONS(2782), - [anon_sym_f32] = ACTIONS(2782), - [anon_sym_f64] = ACTIONS(2782), - [anon_sym_bool] = ACTIONS(2782), - [anon_sym_str] = ACTIONS(2782), - [anon_sym_char] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2780), - [anon_sym_DOT_DOT] = ACTIONS(2780), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_async] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_fn] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_gen] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_impl] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_loop] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_mod] = ACTIONS(2782), - [anon_sym_pub] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_trait] = ACTIONS(2782), - [anon_sym_type] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2782), - [anon_sym_move] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [sym_integer_literal] = ACTIONS(2780), - [aux_sym_string_literal_token1] = ACTIONS(2780), - [sym_char_literal] = ACTIONS(2780), - [anon_sym_true] = ACTIONS(2782), - [anon_sym_false] = ACTIONS(2782), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_crate] = ACTIONS(2782), - [sym_metavariable] = ACTIONS(2780), - [sym__raw_string_literal_start] = ACTIONS(2780), - [sym_float_literal] = ACTIONS(2780), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_macro_rules_BANG] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_u8] = ACTIONS(2764), + [anon_sym_i8] = ACTIONS(2764), + [anon_sym_u16] = ACTIONS(2764), + [anon_sym_i16] = ACTIONS(2764), + [anon_sym_u32] = ACTIONS(2764), + [anon_sym_i32] = ACTIONS(2764), + [anon_sym_u64] = ACTIONS(2764), + [anon_sym_i64] = ACTIONS(2764), + [anon_sym_u128] = ACTIONS(2764), + [anon_sym_i128] = ACTIONS(2764), + [anon_sym_isize] = ACTIONS(2764), + [anon_sym_usize] = ACTIONS(2764), + [anon_sym_f32] = ACTIONS(2764), + [anon_sym_f64] = ACTIONS(2764), + [anon_sym_bool] = ACTIONS(2764), + [anon_sym_str] = ACTIONS(2764), + [anon_sym_char] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2762), + [anon_sym_DOT_DOT] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_async] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_gen] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_impl] = ACTIONS(2764), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_loop] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_mod] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_trait] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_use] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym_yield] = ACTIONS(2764), + [anon_sym_move] = ACTIONS(2764), + [anon_sym_try] = ACTIONS(2764), + [sym_integer_literal] = ACTIONS(2762), + [aux_sym_string_literal_token1] = ACTIONS(2762), + [sym_char_literal] = ACTIONS(2762), + [anon_sym_true] = ACTIONS(2764), + [anon_sym_false] = ACTIONS(2764), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2764), + [sym_super] = ACTIONS(2764), + [sym_crate] = ACTIONS(2764), + [sym_metavariable] = ACTIONS(2762), + [sym__raw_string_literal_start] = ACTIONS(2762), + [sym_float_literal] = ACTIONS(2762), }, [STATE(713)] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_macro_rules_BANG] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_u8] = ACTIONS(2786), - [anon_sym_i8] = ACTIONS(2786), - [anon_sym_u16] = ACTIONS(2786), - [anon_sym_i16] = ACTIONS(2786), - [anon_sym_u32] = ACTIONS(2786), - [anon_sym_i32] = ACTIONS(2786), - [anon_sym_u64] = ACTIONS(2786), - [anon_sym_i64] = ACTIONS(2786), - [anon_sym_u128] = ACTIONS(2786), - [anon_sym_i128] = ACTIONS(2786), - [anon_sym_isize] = ACTIONS(2786), - [anon_sym_usize] = ACTIONS(2786), - [anon_sym_f32] = ACTIONS(2786), - [anon_sym_f64] = ACTIONS(2786), - [anon_sym_bool] = ACTIONS(2786), - [anon_sym_str] = ACTIONS(2786), - [anon_sym_char] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_DOT_DOT] = ACTIONS(2784), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_async] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_fn] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_gen] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_impl] = ACTIONS(2786), - [anon_sym_let] = ACTIONS(2786), - [anon_sym_loop] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2786), - [anon_sym_mod] = ACTIONS(2786), - [anon_sym_pub] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_trait] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_unsafe] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2786), - [anon_sym_move] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [sym_integer_literal] = ACTIONS(2784), - [aux_sym_string_literal_token1] = ACTIONS(2784), - [sym_char_literal] = ACTIONS(2784), - [anon_sym_true] = ACTIONS(2786), - [anon_sym_false] = ACTIONS(2786), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2786), - [sym_super] = ACTIONS(2786), - [sym_crate] = ACTIONS(2786), - [sym_metavariable] = ACTIONS(2784), - [sym__raw_string_literal_start] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_macro_rules_BANG] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_u8] = ACTIONS(2768), + [anon_sym_i8] = ACTIONS(2768), + [anon_sym_u16] = ACTIONS(2768), + [anon_sym_i16] = ACTIONS(2768), + [anon_sym_u32] = ACTIONS(2768), + [anon_sym_i32] = ACTIONS(2768), + [anon_sym_u64] = ACTIONS(2768), + [anon_sym_i64] = ACTIONS(2768), + [anon_sym_u128] = ACTIONS(2768), + [anon_sym_i128] = ACTIONS(2768), + [anon_sym_isize] = ACTIONS(2768), + [anon_sym_usize] = ACTIONS(2768), + [anon_sym_f32] = ACTIONS(2768), + [anon_sym_f64] = ACTIONS(2768), + [anon_sym_bool] = ACTIONS(2768), + [anon_sym_str] = ACTIONS(2768), + [anon_sym_char] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_DOT_DOT] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2766), + [anon_sym_POUND] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_async] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_fn] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_gen] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_impl] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_loop] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_mod] = ACTIONS(2768), + [anon_sym_pub] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_trait] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_unsafe] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_move] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [sym_integer_literal] = ACTIONS(2766), + [aux_sym_string_literal_token1] = ACTIONS(2766), + [sym_char_literal] = ACTIONS(2766), + [anon_sym_true] = ACTIONS(2768), + [anon_sym_false] = ACTIONS(2768), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2768), + [sym_super] = ACTIONS(2768), + [sym_crate] = ACTIONS(2768), + [sym_metavariable] = ACTIONS(2766), + [sym__raw_string_literal_start] = ACTIONS(2766), + [sym_float_literal] = ACTIONS(2766), }, [STATE(714)] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_macro_rules_BANG] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_u8] = ACTIONS(2790), - [anon_sym_i8] = ACTIONS(2790), - [anon_sym_u16] = ACTIONS(2790), - [anon_sym_i16] = ACTIONS(2790), - [anon_sym_u32] = ACTIONS(2790), - [anon_sym_i32] = ACTIONS(2790), - [anon_sym_u64] = ACTIONS(2790), - [anon_sym_i64] = ACTIONS(2790), - [anon_sym_u128] = ACTIONS(2790), - [anon_sym_i128] = ACTIONS(2790), - [anon_sym_isize] = ACTIONS(2790), - [anon_sym_usize] = ACTIONS(2790), - [anon_sym_f32] = ACTIONS(2790), - [anon_sym_f64] = ACTIONS(2790), - [anon_sym_bool] = ACTIONS(2790), - [anon_sym_str] = ACTIONS(2790), - [anon_sym_char] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_DOT_DOT] = ACTIONS(2788), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2790), - [anon_sym_async] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_gen] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_impl] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_loop] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_mod] = ACTIONS(2790), - [anon_sym_pub] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_trait] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_move] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [sym_integer_literal] = ACTIONS(2788), - [aux_sym_string_literal_token1] = ACTIONS(2788), - [sym_char_literal] = ACTIONS(2788), - [anon_sym_true] = ACTIONS(2790), - [anon_sym_false] = ACTIONS(2790), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2790), - [sym_super] = ACTIONS(2790), - [sym_crate] = ACTIONS(2790), - [sym_metavariable] = ACTIONS(2788), - [sym__raw_string_literal_start] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_macro_rules_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_u8] = ACTIONS(2772), + [anon_sym_i8] = ACTIONS(2772), + [anon_sym_u16] = ACTIONS(2772), + [anon_sym_i16] = ACTIONS(2772), + [anon_sym_u32] = ACTIONS(2772), + [anon_sym_i32] = ACTIONS(2772), + [anon_sym_u64] = ACTIONS(2772), + [anon_sym_i64] = ACTIONS(2772), + [anon_sym_u128] = ACTIONS(2772), + [anon_sym_i128] = ACTIONS(2772), + [anon_sym_isize] = ACTIONS(2772), + [anon_sym_usize] = ACTIONS(2772), + [anon_sym_f32] = ACTIONS(2772), + [anon_sym_f64] = ACTIONS(2772), + [anon_sym_bool] = ACTIONS(2772), + [anon_sym_str] = ACTIONS(2772), + [anon_sym_char] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_POUND] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_fn] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_gen] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_impl] = ACTIONS(2772), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_loop] = ACTIONS(2772), + [anon_sym_match] = ACTIONS(2772), + [anon_sym_mod] = ACTIONS(2772), + [anon_sym_pub] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_trait] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_use] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym_yield] = ACTIONS(2772), + [anon_sym_move] = ACTIONS(2772), + [anon_sym_try] = ACTIONS(2772), + [sym_integer_literal] = ACTIONS(2770), + [aux_sym_string_literal_token1] = ACTIONS(2770), + [sym_char_literal] = ACTIONS(2770), + [anon_sym_true] = ACTIONS(2772), + [anon_sym_false] = ACTIONS(2772), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2772), + [sym_super] = ACTIONS(2772), + [sym_crate] = ACTIONS(2772), + [sym_metavariable] = ACTIONS(2770), + [sym__raw_string_literal_start] = ACTIONS(2770), + [sym_float_literal] = ACTIONS(2770), }, [STATE(715)] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_macro_rules_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_u8] = ACTIONS(2794), - [anon_sym_i8] = ACTIONS(2794), - [anon_sym_u16] = ACTIONS(2794), - [anon_sym_i16] = ACTIONS(2794), - [anon_sym_u32] = ACTIONS(2794), - [anon_sym_i32] = ACTIONS(2794), - [anon_sym_u64] = ACTIONS(2794), - [anon_sym_i64] = ACTIONS(2794), - [anon_sym_u128] = ACTIONS(2794), - [anon_sym_i128] = ACTIONS(2794), - [anon_sym_isize] = ACTIONS(2794), - [anon_sym_usize] = ACTIONS(2794), - [anon_sym_f32] = ACTIONS(2794), - [anon_sym_f64] = ACTIONS(2794), - [anon_sym_bool] = ACTIONS(2794), - [anon_sym_str] = ACTIONS(2794), - [anon_sym_char] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_DOT_DOT] = ACTIONS(2792), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2794), - [anon_sym_async] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_gen] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_impl] = ACTIONS(2794), - [anon_sym_let] = ACTIONS(2794), - [anon_sym_loop] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_mod] = ACTIONS(2794), - [anon_sym_pub] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_trait] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_use] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym_yield] = ACTIONS(2794), - [anon_sym_move] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [sym_integer_literal] = ACTIONS(2792), - [aux_sym_string_literal_token1] = ACTIONS(2792), - [sym_char_literal] = ACTIONS(2792), - [anon_sym_true] = ACTIONS(2794), - [anon_sym_false] = ACTIONS(2794), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2794), - [sym_super] = ACTIONS(2794), - [sym_crate] = ACTIONS(2794), - [sym_metavariable] = ACTIONS(2792), - [sym__raw_string_literal_start] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_macro_rules_BANG] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_u8] = ACTIONS(2776), + [anon_sym_i8] = ACTIONS(2776), + [anon_sym_u16] = ACTIONS(2776), + [anon_sym_i16] = ACTIONS(2776), + [anon_sym_u32] = ACTIONS(2776), + [anon_sym_i32] = ACTIONS(2776), + [anon_sym_u64] = ACTIONS(2776), + [anon_sym_i64] = ACTIONS(2776), + [anon_sym_u128] = ACTIONS(2776), + [anon_sym_i128] = ACTIONS(2776), + [anon_sym_isize] = ACTIONS(2776), + [anon_sym_usize] = ACTIONS(2776), + [anon_sym_f32] = ACTIONS(2776), + [anon_sym_f64] = ACTIONS(2776), + [anon_sym_bool] = ACTIONS(2776), + [anon_sym_str] = ACTIONS(2776), + [anon_sym_char] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2774), + [anon_sym_DOT_DOT] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_async] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_fn] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_gen] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_impl] = ACTIONS(2776), + [anon_sym_let] = ACTIONS(2776), + [anon_sym_loop] = ACTIONS(2776), + [anon_sym_match] = ACTIONS(2776), + [anon_sym_mod] = ACTIONS(2776), + [anon_sym_pub] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_trait] = ACTIONS(2776), + [anon_sym_type] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_unsafe] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2776), + [anon_sym_move] = ACTIONS(2776), + [anon_sym_try] = ACTIONS(2776), + [sym_integer_literal] = ACTIONS(2774), + [aux_sym_string_literal_token1] = ACTIONS(2774), + [sym_char_literal] = ACTIONS(2774), + [anon_sym_true] = ACTIONS(2776), + [anon_sym_false] = ACTIONS(2776), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2776), + [sym_super] = ACTIONS(2776), + [sym_crate] = ACTIONS(2776), + [sym_metavariable] = ACTIONS(2774), + [sym__raw_string_literal_start] = ACTIONS(2774), + [sym_float_literal] = ACTIONS(2774), }, [STATE(716)] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_macro_rules_BANG] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_u8] = ACTIONS(2798), - [anon_sym_i8] = ACTIONS(2798), - [anon_sym_u16] = ACTIONS(2798), - [anon_sym_i16] = ACTIONS(2798), - [anon_sym_u32] = ACTIONS(2798), - [anon_sym_i32] = ACTIONS(2798), - [anon_sym_u64] = ACTIONS(2798), - [anon_sym_i64] = ACTIONS(2798), - [anon_sym_u128] = ACTIONS(2798), - [anon_sym_i128] = ACTIONS(2798), - [anon_sym_isize] = ACTIONS(2798), - [anon_sym_usize] = ACTIONS(2798), - [anon_sym_f32] = ACTIONS(2798), - [anon_sym_f64] = ACTIONS(2798), - [anon_sym_bool] = ACTIONS(2798), - [anon_sym_str] = ACTIONS(2798), - [anon_sym_char] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_DOT_DOT] = ACTIONS(2796), - [anon_sym_COLON_COLON] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2798), - [anon_sym_async] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_gen] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_impl] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_loop] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_mod] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_trait] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_extern] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_move] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [sym_integer_literal] = ACTIONS(2796), - [aux_sym_string_literal_token1] = ACTIONS(2796), - [sym_char_literal] = ACTIONS(2796), - [anon_sym_true] = ACTIONS(2798), - [anon_sym_false] = ACTIONS(2798), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2798), - [sym_super] = ACTIONS(2798), - [sym_crate] = ACTIONS(2798), - [sym_metavariable] = ACTIONS(2796), - [sym__raw_string_literal_start] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_macro_rules_BANG] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_u8] = ACTIONS(2780), + [anon_sym_i8] = ACTIONS(2780), + [anon_sym_u16] = ACTIONS(2780), + [anon_sym_i16] = ACTIONS(2780), + [anon_sym_u32] = ACTIONS(2780), + [anon_sym_i32] = ACTIONS(2780), + [anon_sym_u64] = ACTIONS(2780), + [anon_sym_i64] = ACTIONS(2780), + [anon_sym_u128] = ACTIONS(2780), + [anon_sym_i128] = ACTIONS(2780), + [anon_sym_isize] = ACTIONS(2780), + [anon_sym_usize] = ACTIONS(2780), + [anon_sym_f32] = ACTIONS(2780), + [anon_sym_f64] = ACTIONS(2780), + [anon_sym_bool] = ACTIONS(2780), + [anon_sym_str] = ACTIONS(2780), + [anon_sym_char] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_DOT_DOT] = ACTIONS(2778), + [anon_sym_COLON_COLON] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_fn] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_gen] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_impl] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_loop] = ACTIONS(2780), + [anon_sym_match] = ACTIONS(2780), + [anon_sym_mod] = ACTIONS(2780), + [anon_sym_pub] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_trait] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_unsafe] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_move] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [sym_integer_literal] = ACTIONS(2778), + [aux_sym_string_literal_token1] = ACTIONS(2778), + [sym_char_literal] = ACTIONS(2778), + [anon_sym_true] = ACTIONS(2780), + [anon_sym_false] = ACTIONS(2780), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_crate] = ACTIONS(2780), + [sym_metavariable] = ACTIONS(2778), + [sym__raw_string_literal_start] = ACTIONS(2778), + [sym_float_literal] = ACTIONS(2778), }, [STATE(717)] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_macro_rules_BANG] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_u8] = ACTIONS(2802), - [anon_sym_i8] = ACTIONS(2802), - [anon_sym_u16] = ACTIONS(2802), - [anon_sym_i16] = ACTIONS(2802), - [anon_sym_u32] = ACTIONS(2802), - [anon_sym_i32] = ACTIONS(2802), - [anon_sym_u64] = ACTIONS(2802), - [anon_sym_i64] = ACTIONS(2802), - [anon_sym_u128] = ACTIONS(2802), - [anon_sym_i128] = ACTIONS(2802), - [anon_sym_isize] = ACTIONS(2802), - [anon_sym_usize] = ACTIONS(2802), - [anon_sym_f32] = ACTIONS(2802), - [anon_sym_f64] = ACTIONS(2802), - [anon_sym_bool] = ACTIONS(2802), - [anon_sym_str] = ACTIONS(2802), - [anon_sym_char] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2802), - [anon_sym_async] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_gen] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_impl] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_loop] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_mod] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_trait] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_extern] = ACTIONS(2802), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_move] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [sym_integer_literal] = ACTIONS(2800), - [aux_sym_string_literal_token1] = ACTIONS(2800), - [sym_char_literal] = ACTIONS(2800), - [anon_sym_true] = ACTIONS(2802), - [anon_sym_false] = ACTIONS(2802), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2802), - [sym_super] = ACTIONS(2802), - [sym_crate] = ACTIONS(2802), - [sym_metavariable] = ACTIONS(2800), - [sym__raw_string_literal_start] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_macro_rules_BANG] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_STAR] = ACTIONS(2782), + [anon_sym_u8] = ACTIONS(2784), + [anon_sym_i8] = ACTIONS(2784), + [anon_sym_u16] = ACTIONS(2784), + [anon_sym_i16] = ACTIONS(2784), + [anon_sym_u32] = ACTIONS(2784), + [anon_sym_i32] = ACTIONS(2784), + [anon_sym_u64] = ACTIONS(2784), + [anon_sym_i64] = ACTIONS(2784), + [anon_sym_u128] = ACTIONS(2784), + [anon_sym_i128] = ACTIONS(2784), + [anon_sym_isize] = ACTIONS(2784), + [anon_sym_usize] = ACTIONS(2784), + [anon_sym_f32] = ACTIONS(2784), + [anon_sym_f64] = ACTIONS(2784), + [anon_sym_bool] = ACTIONS(2784), + [anon_sym_str] = ACTIONS(2784), + [anon_sym_char] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2782), + [anon_sym_COLON_COLON] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_async] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_fn] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_gen] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_impl] = ACTIONS(2784), + [anon_sym_let] = ACTIONS(2784), + [anon_sym_loop] = ACTIONS(2784), + [anon_sym_match] = ACTIONS(2784), + [anon_sym_mod] = ACTIONS(2784), + [anon_sym_pub] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_trait] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_unsafe] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_extern] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2784), + [anon_sym_move] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2784), + [sym_integer_literal] = ACTIONS(2782), + [aux_sym_string_literal_token1] = ACTIONS(2782), + [sym_char_literal] = ACTIONS(2782), + [anon_sym_true] = ACTIONS(2784), + [anon_sym_false] = ACTIONS(2784), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2784), + [sym_super] = ACTIONS(2784), + [sym_crate] = ACTIONS(2784), + [sym_metavariable] = ACTIONS(2782), + [sym__raw_string_literal_start] = ACTIONS(2782), + [sym_float_literal] = ACTIONS(2782), }, [STATE(718)] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_macro_rules_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u128] = ACTIONS(2806), - [anon_sym_i128] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_str] = ACTIONS(2806), - [anon_sym_char] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_DOT_DOT] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2806), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_gen] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_impl] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_mod] = ACTIONS(2806), - [anon_sym_pub] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_trait] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_move] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [sym_integer_literal] = ACTIONS(2804), - [aux_sym_string_literal_token1] = ACTIONS(2804), - [sym_char_literal] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2806), - [sym_super] = ACTIONS(2806), - [sym_crate] = ACTIONS(2806), - [sym_metavariable] = ACTIONS(2804), - [sym__raw_string_literal_start] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_macro_rules_BANG] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_u8] = ACTIONS(2788), + [anon_sym_i8] = ACTIONS(2788), + [anon_sym_u16] = ACTIONS(2788), + [anon_sym_i16] = ACTIONS(2788), + [anon_sym_u32] = ACTIONS(2788), + [anon_sym_i32] = ACTIONS(2788), + [anon_sym_u64] = ACTIONS(2788), + [anon_sym_i64] = ACTIONS(2788), + [anon_sym_u128] = ACTIONS(2788), + [anon_sym_i128] = ACTIONS(2788), + [anon_sym_isize] = ACTIONS(2788), + [anon_sym_usize] = ACTIONS(2788), + [anon_sym_f32] = ACTIONS(2788), + [anon_sym_f64] = ACTIONS(2788), + [anon_sym_bool] = ACTIONS(2788), + [anon_sym_str] = ACTIONS(2788), + [anon_sym_char] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2786), + [anon_sym_DOT_DOT] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2786), + [anon_sym_POUND] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_async] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_fn] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_gen] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_impl] = ACTIONS(2788), + [anon_sym_let] = ACTIONS(2788), + [anon_sym_loop] = ACTIONS(2788), + [anon_sym_match] = ACTIONS(2788), + [anon_sym_mod] = ACTIONS(2788), + [anon_sym_pub] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_trait] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(2788), + [anon_sym_use] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym_yield] = ACTIONS(2788), + [anon_sym_move] = ACTIONS(2788), + [anon_sym_try] = ACTIONS(2788), + [sym_integer_literal] = ACTIONS(2786), + [aux_sym_string_literal_token1] = ACTIONS(2786), + [sym_char_literal] = ACTIONS(2786), + [anon_sym_true] = ACTIONS(2788), + [anon_sym_false] = ACTIONS(2788), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2788), + [sym_super] = ACTIONS(2788), + [sym_crate] = ACTIONS(2788), + [sym_metavariable] = ACTIONS(2786), + [sym__raw_string_literal_start] = ACTIONS(2786), + [sym_float_literal] = ACTIONS(2786), }, [STATE(719)] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_macro_rules_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_u8] = ACTIONS(2810), - [anon_sym_i8] = ACTIONS(2810), - [anon_sym_u16] = ACTIONS(2810), - [anon_sym_i16] = ACTIONS(2810), - [anon_sym_u32] = ACTIONS(2810), - [anon_sym_i32] = ACTIONS(2810), - [anon_sym_u64] = ACTIONS(2810), - [anon_sym_i64] = ACTIONS(2810), - [anon_sym_u128] = ACTIONS(2810), - [anon_sym_i128] = ACTIONS(2810), - [anon_sym_isize] = ACTIONS(2810), - [anon_sym_usize] = ACTIONS(2810), - [anon_sym_f32] = ACTIONS(2810), - [anon_sym_f64] = ACTIONS(2810), - [anon_sym_bool] = ACTIONS(2810), - [anon_sym_str] = ACTIONS(2810), - [anon_sym_char] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2810), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_gen] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_impl] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_loop] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_mod] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_trait] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(2810), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_move] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [sym_integer_literal] = ACTIONS(2808), - [aux_sym_string_literal_token1] = ACTIONS(2808), - [sym_char_literal] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2810), - [anon_sym_false] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2810), - [sym_super] = ACTIONS(2810), - [sym_crate] = ACTIONS(2810), - [sym_metavariable] = ACTIONS(2808), - [sym__raw_string_literal_start] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_macro_rules_BANG] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_u8] = ACTIONS(2792), + [anon_sym_i8] = ACTIONS(2792), + [anon_sym_u16] = ACTIONS(2792), + [anon_sym_i16] = ACTIONS(2792), + [anon_sym_u32] = ACTIONS(2792), + [anon_sym_i32] = ACTIONS(2792), + [anon_sym_u64] = ACTIONS(2792), + [anon_sym_i64] = ACTIONS(2792), + [anon_sym_u128] = ACTIONS(2792), + [anon_sym_i128] = ACTIONS(2792), + [anon_sym_isize] = ACTIONS(2792), + [anon_sym_usize] = ACTIONS(2792), + [anon_sym_f32] = ACTIONS(2792), + [anon_sym_f64] = ACTIONS(2792), + [anon_sym_bool] = ACTIONS(2792), + [anon_sym_str] = ACTIONS(2792), + [anon_sym_char] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_DOT_DOT] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2790), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_async] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_fn] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_gen] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_impl] = ACTIONS(2792), + [anon_sym_let] = ACTIONS(2792), + [anon_sym_loop] = ACTIONS(2792), + [anon_sym_match] = ACTIONS(2792), + [anon_sym_mod] = ACTIONS(2792), + [anon_sym_pub] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_trait] = ACTIONS(2792), + [anon_sym_type] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_unsafe] = ACTIONS(2792), + [anon_sym_use] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym_yield] = ACTIONS(2792), + [anon_sym_move] = ACTIONS(2792), + [anon_sym_try] = ACTIONS(2792), + [sym_integer_literal] = ACTIONS(2790), + [aux_sym_string_literal_token1] = ACTIONS(2790), + [sym_char_literal] = ACTIONS(2790), + [anon_sym_true] = ACTIONS(2792), + [anon_sym_false] = ACTIONS(2792), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2792), + [sym_super] = ACTIONS(2792), + [sym_crate] = ACTIONS(2792), + [sym_metavariable] = ACTIONS(2790), + [sym__raw_string_literal_start] = ACTIONS(2790), + [sym_float_literal] = ACTIONS(2790), }, [STATE(720)] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2814), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_macro_rules_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_u8] = ACTIONS(2814), - [anon_sym_i8] = ACTIONS(2814), - [anon_sym_u16] = ACTIONS(2814), - [anon_sym_i16] = ACTIONS(2814), - [anon_sym_u32] = ACTIONS(2814), - [anon_sym_i32] = ACTIONS(2814), - [anon_sym_u64] = ACTIONS(2814), - [anon_sym_i64] = ACTIONS(2814), - [anon_sym_u128] = ACTIONS(2814), - [anon_sym_i128] = ACTIONS(2814), - [anon_sym_isize] = ACTIONS(2814), - [anon_sym_usize] = ACTIONS(2814), - [anon_sym_f32] = ACTIONS(2814), - [anon_sym_f64] = ACTIONS(2814), - [anon_sym_bool] = ACTIONS(2814), - [anon_sym_str] = ACTIONS(2814), - [anon_sym_char] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_DOT_DOT] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2814), - [anon_sym_async] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_gen] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_impl] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_loop] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_mod] = ACTIONS(2814), - [anon_sym_pub] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_trait] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_extern] = ACTIONS(2814), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_move] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [sym_integer_literal] = ACTIONS(2812), - [aux_sym_string_literal_token1] = ACTIONS(2812), - [sym_char_literal] = ACTIONS(2812), - [anon_sym_true] = ACTIONS(2814), - [anon_sym_false] = ACTIONS(2814), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2814), - [sym_super] = ACTIONS(2814), - [sym_crate] = ACTIONS(2814), - [sym_metavariable] = ACTIONS(2812), - [sym__raw_string_literal_start] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), + [ts_builtin_sym_end] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_macro_rules_BANG] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_u8] = ACTIONS(2796), + [anon_sym_i8] = ACTIONS(2796), + [anon_sym_u16] = ACTIONS(2796), + [anon_sym_i16] = ACTIONS(2796), + [anon_sym_u32] = ACTIONS(2796), + [anon_sym_i32] = ACTIONS(2796), + [anon_sym_u64] = ACTIONS(2796), + [anon_sym_i64] = ACTIONS(2796), + [anon_sym_u128] = ACTIONS(2796), + [anon_sym_i128] = ACTIONS(2796), + [anon_sym_isize] = ACTIONS(2796), + [anon_sym_usize] = ACTIONS(2796), + [anon_sym_f32] = ACTIONS(2796), + [anon_sym_f64] = ACTIONS(2796), + [anon_sym_bool] = ACTIONS(2796), + [anon_sym_str] = ACTIONS(2796), + [anon_sym_char] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2794), + [anon_sym_COLON_COLON] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2796), + [anon_sym_async] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_fn] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_gen] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_impl] = ACTIONS(2796), + [anon_sym_let] = ACTIONS(2796), + [anon_sym_loop] = ACTIONS(2796), + [anon_sym_match] = ACTIONS(2796), + [anon_sym_mod] = ACTIONS(2796), + [anon_sym_pub] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_trait] = ACTIONS(2796), + [anon_sym_type] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_unsafe] = ACTIONS(2796), + [anon_sym_use] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym_yield] = ACTIONS(2796), + [anon_sym_move] = ACTIONS(2796), + [anon_sym_try] = ACTIONS(2796), + [sym_integer_literal] = ACTIONS(2794), + [aux_sym_string_literal_token1] = ACTIONS(2794), + [sym_char_literal] = ACTIONS(2794), + [anon_sym_true] = ACTIONS(2796), + [anon_sym_false] = ACTIONS(2796), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2796), + [sym_super] = ACTIONS(2796), + [sym_crate] = ACTIONS(2796), + [sym_metavariable] = ACTIONS(2794), + [sym__raw_string_literal_start] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), }, [STATE(721)] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_macro_rules_BANG] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_u8] = ACTIONS(2818), - [anon_sym_i8] = ACTIONS(2818), - [anon_sym_u16] = ACTIONS(2818), - [anon_sym_i16] = ACTIONS(2818), - [anon_sym_u32] = ACTIONS(2818), - [anon_sym_i32] = ACTIONS(2818), - [anon_sym_u64] = ACTIONS(2818), - [anon_sym_i64] = ACTIONS(2818), - [anon_sym_u128] = ACTIONS(2818), - [anon_sym_i128] = ACTIONS(2818), - [anon_sym_isize] = ACTIONS(2818), - [anon_sym_usize] = ACTIONS(2818), - [anon_sym_f32] = ACTIONS(2818), - [anon_sym_f64] = ACTIONS(2818), - [anon_sym_bool] = ACTIONS(2818), - [anon_sym_str] = ACTIONS(2818), - [anon_sym_char] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_DOT_DOT] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2818), - [anon_sym_async] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_fn] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_gen] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_impl] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_loop] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_mod] = ACTIONS(2818), - [anon_sym_pub] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_trait] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_unsafe] = ACTIONS(2818), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_move] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [sym_integer_literal] = ACTIONS(2816), - [aux_sym_string_literal_token1] = ACTIONS(2816), - [sym_char_literal] = ACTIONS(2816), - [anon_sym_true] = ACTIONS(2818), - [anon_sym_false] = ACTIONS(2818), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2818), - [sym_super] = ACTIONS(2818), - [sym_crate] = ACTIONS(2818), - [sym_metavariable] = ACTIONS(2816), - [sym__raw_string_literal_start] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_macro_rules_BANG] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_u8] = ACTIONS(2800), + [anon_sym_i8] = ACTIONS(2800), + [anon_sym_u16] = ACTIONS(2800), + [anon_sym_i16] = ACTIONS(2800), + [anon_sym_u32] = ACTIONS(2800), + [anon_sym_i32] = ACTIONS(2800), + [anon_sym_u64] = ACTIONS(2800), + [anon_sym_i64] = ACTIONS(2800), + [anon_sym_u128] = ACTIONS(2800), + [anon_sym_i128] = ACTIONS(2800), + [anon_sym_isize] = ACTIONS(2800), + [anon_sym_usize] = ACTIONS(2800), + [anon_sym_f32] = ACTIONS(2800), + [anon_sym_f64] = ACTIONS(2800), + [anon_sym_bool] = ACTIONS(2800), + [anon_sym_str] = ACTIONS(2800), + [anon_sym_char] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_DOT_DOT] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2800), + [anon_sym_async] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_fn] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_gen] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_impl] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2800), + [anon_sym_loop] = ACTIONS(2800), + [anon_sym_match] = ACTIONS(2800), + [anon_sym_mod] = ACTIONS(2800), + [anon_sym_pub] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_trait] = ACTIONS(2800), + [anon_sym_type] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_unsafe] = ACTIONS(2800), + [anon_sym_use] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym_yield] = ACTIONS(2800), + [anon_sym_move] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [sym_integer_literal] = ACTIONS(2798), + [aux_sym_string_literal_token1] = ACTIONS(2798), + [sym_char_literal] = ACTIONS(2798), + [anon_sym_true] = ACTIONS(2800), + [anon_sym_false] = ACTIONS(2800), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2800), + [sym_super] = ACTIONS(2800), + [sym_crate] = ACTIONS(2800), + [sym_metavariable] = ACTIONS(2798), + [sym__raw_string_literal_start] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), }, [STATE(722)] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_macro_rules_BANG] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_u8] = ACTIONS(2822), - [anon_sym_i8] = ACTIONS(2822), - [anon_sym_u16] = ACTIONS(2822), - [anon_sym_i16] = ACTIONS(2822), - [anon_sym_u32] = ACTIONS(2822), - [anon_sym_i32] = ACTIONS(2822), - [anon_sym_u64] = ACTIONS(2822), - [anon_sym_i64] = ACTIONS(2822), - [anon_sym_u128] = ACTIONS(2822), - [anon_sym_i128] = ACTIONS(2822), - [anon_sym_isize] = ACTIONS(2822), - [anon_sym_usize] = ACTIONS(2822), - [anon_sym_f32] = ACTIONS(2822), - [anon_sym_f64] = ACTIONS(2822), - [anon_sym_bool] = ACTIONS(2822), - [anon_sym_str] = ACTIONS(2822), - [anon_sym_char] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_DOT_DOT] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_async] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_gen] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_impl] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_loop] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_mod] = ACTIONS(2822), - [anon_sym_pub] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_trait] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_extern] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_move] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [sym_integer_literal] = ACTIONS(2820), - [aux_sym_string_literal_token1] = ACTIONS(2820), - [sym_char_literal] = ACTIONS(2820), - [anon_sym_true] = ACTIONS(2822), - [anon_sym_false] = ACTIONS(2822), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2822), - [sym_super] = ACTIONS(2822), - [sym_crate] = ACTIONS(2822), - [sym_metavariable] = ACTIONS(2820), - [sym__raw_string_literal_start] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_macro_rules_BANG] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_u8] = ACTIONS(2804), + [anon_sym_i8] = ACTIONS(2804), + [anon_sym_u16] = ACTIONS(2804), + [anon_sym_i16] = ACTIONS(2804), + [anon_sym_u32] = ACTIONS(2804), + [anon_sym_i32] = ACTIONS(2804), + [anon_sym_u64] = ACTIONS(2804), + [anon_sym_i64] = ACTIONS(2804), + [anon_sym_u128] = ACTIONS(2804), + [anon_sym_i128] = ACTIONS(2804), + [anon_sym_isize] = ACTIONS(2804), + [anon_sym_usize] = ACTIONS(2804), + [anon_sym_f32] = ACTIONS(2804), + [anon_sym_f64] = ACTIONS(2804), + [anon_sym_bool] = ACTIONS(2804), + [anon_sym_str] = ACTIONS(2804), + [anon_sym_char] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_DOT_DOT] = ACTIONS(2802), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_fn] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_gen] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_impl] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_loop] = ACTIONS(2804), + [anon_sym_match] = ACTIONS(2804), + [anon_sym_mod] = ACTIONS(2804), + [anon_sym_pub] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_trait] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_unsafe] = ACTIONS(2804), + [anon_sym_use] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_move] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [sym_integer_literal] = ACTIONS(2802), + [aux_sym_string_literal_token1] = ACTIONS(2802), + [sym_char_literal] = ACTIONS(2802), + [anon_sym_true] = ACTIONS(2804), + [anon_sym_false] = ACTIONS(2804), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_crate] = ACTIONS(2804), + [sym_metavariable] = ACTIONS(2802), + [sym__raw_string_literal_start] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2802), }, [STATE(723)] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_yield] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_macro_rules_BANG] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_u8] = ACTIONS(2808), + [anon_sym_i8] = ACTIONS(2808), + [anon_sym_u16] = ACTIONS(2808), + [anon_sym_i16] = ACTIONS(2808), + [anon_sym_u32] = ACTIONS(2808), + [anon_sym_i32] = ACTIONS(2808), + [anon_sym_u64] = ACTIONS(2808), + [anon_sym_i64] = ACTIONS(2808), + [anon_sym_u128] = ACTIONS(2808), + [anon_sym_i128] = ACTIONS(2808), + [anon_sym_isize] = ACTIONS(2808), + [anon_sym_usize] = ACTIONS(2808), + [anon_sym_f32] = ACTIONS(2808), + [anon_sym_f64] = ACTIONS(2808), + [anon_sym_bool] = ACTIONS(2808), + [anon_sym_str] = ACTIONS(2808), + [anon_sym_char] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_DOT_DOT] = ACTIONS(2806), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_gen] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_impl] = ACTIONS(2808), + [anon_sym_let] = ACTIONS(2808), + [anon_sym_loop] = ACTIONS(2808), + [anon_sym_match] = ACTIONS(2808), + [anon_sym_mod] = ACTIONS(2808), + [anon_sym_pub] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_trait] = ACTIONS(2808), + [anon_sym_type] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_unsafe] = ACTIONS(2808), + [anon_sym_use] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym_yield] = ACTIONS(2808), + [anon_sym_move] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [sym_integer_literal] = ACTIONS(2806), + [aux_sym_string_literal_token1] = ACTIONS(2806), + [sym_char_literal] = ACTIONS(2806), + [anon_sym_true] = ACTIONS(2808), + [anon_sym_false] = ACTIONS(2808), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2808), + [sym_super] = ACTIONS(2808), + [sym_crate] = ACTIONS(2808), + [sym_metavariable] = ACTIONS(2806), + [sym__raw_string_literal_start] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), }, [STATE(724)] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_macro_rules_BANG] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_u8] = ACTIONS(2826), - [anon_sym_i8] = ACTIONS(2826), - [anon_sym_u16] = ACTIONS(2826), - [anon_sym_i16] = ACTIONS(2826), - [anon_sym_u32] = ACTIONS(2826), - [anon_sym_i32] = ACTIONS(2826), - [anon_sym_u64] = ACTIONS(2826), - [anon_sym_i64] = ACTIONS(2826), - [anon_sym_u128] = ACTIONS(2826), - [anon_sym_i128] = ACTIONS(2826), - [anon_sym_isize] = ACTIONS(2826), - [anon_sym_usize] = ACTIONS(2826), - [anon_sym_f32] = ACTIONS(2826), - [anon_sym_f64] = ACTIONS(2826), - [anon_sym_bool] = ACTIONS(2826), - [anon_sym_str] = ACTIONS(2826), - [anon_sym_char] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_DOT_DOT] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_fn] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_gen] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_impl] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_loop] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_mod] = ACTIONS(2826), - [anon_sym_pub] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_trait] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_unsafe] = ACTIONS(2826), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_move] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [sym_integer_literal] = ACTIONS(2824), - [aux_sym_string_literal_token1] = ACTIONS(2824), - [sym_char_literal] = ACTIONS(2824), - [anon_sym_true] = ACTIONS(2826), - [anon_sym_false] = ACTIONS(2826), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2826), - [sym_super] = ACTIONS(2826), - [sym_crate] = ACTIONS(2826), - [sym_metavariable] = ACTIONS(2824), - [sym__raw_string_literal_start] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_macro_rules_BANG] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_u8] = ACTIONS(2812), + [anon_sym_i8] = ACTIONS(2812), + [anon_sym_u16] = ACTIONS(2812), + [anon_sym_i16] = ACTIONS(2812), + [anon_sym_u32] = ACTIONS(2812), + [anon_sym_i32] = ACTIONS(2812), + [anon_sym_u64] = ACTIONS(2812), + [anon_sym_i64] = ACTIONS(2812), + [anon_sym_u128] = ACTIONS(2812), + [anon_sym_i128] = ACTIONS(2812), + [anon_sym_isize] = ACTIONS(2812), + [anon_sym_usize] = ACTIONS(2812), + [anon_sym_f32] = ACTIONS(2812), + [anon_sym_f64] = ACTIONS(2812), + [anon_sym_bool] = ACTIONS(2812), + [anon_sym_str] = ACTIONS(2812), + [anon_sym_char] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_DOT_DOT] = ACTIONS(2810), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2812), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_gen] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_impl] = ACTIONS(2812), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_loop] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_mod] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_trait] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_use] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym_yield] = ACTIONS(2812), + [anon_sym_move] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [sym_integer_literal] = ACTIONS(2810), + [aux_sym_string_literal_token1] = ACTIONS(2810), + [sym_char_literal] = ACTIONS(2810), + [anon_sym_true] = ACTIONS(2812), + [anon_sym_false] = ACTIONS(2812), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2812), + [sym_super] = ACTIONS(2812), + [sym_crate] = ACTIONS(2812), + [sym_metavariable] = ACTIONS(2810), + [sym__raw_string_literal_start] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2810), }, [STATE(725)] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_macro_rules_BANG] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_u8] = ACTIONS(2830), - [anon_sym_i8] = ACTIONS(2830), - [anon_sym_u16] = ACTIONS(2830), - [anon_sym_i16] = ACTIONS(2830), - [anon_sym_u32] = ACTIONS(2830), - [anon_sym_i32] = ACTIONS(2830), - [anon_sym_u64] = ACTIONS(2830), - [anon_sym_i64] = ACTIONS(2830), - [anon_sym_u128] = ACTIONS(2830), - [anon_sym_i128] = ACTIONS(2830), - [anon_sym_isize] = ACTIONS(2830), - [anon_sym_usize] = ACTIONS(2830), - [anon_sym_f32] = ACTIONS(2830), - [anon_sym_f64] = ACTIONS(2830), - [anon_sym_bool] = ACTIONS(2830), - [anon_sym_str] = ACTIONS(2830), - [anon_sym_char] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_fn] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_gen] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_impl] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_loop] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_mod] = ACTIONS(2830), - [anon_sym_pub] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_trait] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_unsafe] = ACTIONS(2830), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_extern] = ACTIONS(2830), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_move] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [sym_integer_literal] = ACTIONS(2828), - [aux_sym_string_literal_token1] = ACTIONS(2828), - [sym_char_literal] = ACTIONS(2828), - [anon_sym_true] = ACTIONS(2830), - [anon_sym_false] = ACTIONS(2830), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2830), - [sym_super] = ACTIONS(2830), - [sym_crate] = ACTIONS(2830), - [sym_metavariable] = ACTIONS(2828), - [sym__raw_string_literal_start] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_macro_rules_BANG] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_u8] = ACTIONS(2816), + [anon_sym_i8] = ACTIONS(2816), + [anon_sym_u16] = ACTIONS(2816), + [anon_sym_i16] = ACTIONS(2816), + [anon_sym_u32] = ACTIONS(2816), + [anon_sym_i32] = ACTIONS(2816), + [anon_sym_u64] = ACTIONS(2816), + [anon_sym_i64] = ACTIONS(2816), + [anon_sym_u128] = ACTIONS(2816), + [anon_sym_i128] = ACTIONS(2816), + [anon_sym_isize] = ACTIONS(2816), + [anon_sym_usize] = ACTIONS(2816), + [anon_sym_f32] = ACTIONS(2816), + [anon_sym_f64] = ACTIONS(2816), + [anon_sym_bool] = ACTIONS(2816), + [anon_sym_str] = ACTIONS(2816), + [anon_sym_char] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_DOT_DOT] = ACTIONS(2814), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_fn] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_gen] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_impl] = ACTIONS(2816), + [anon_sym_let] = ACTIONS(2816), + [anon_sym_loop] = ACTIONS(2816), + [anon_sym_match] = ACTIONS(2816), + [anon_sym_mod] = ACTIONS(2816), + [anon_sym_pub] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_trait] = ACTIONS(2816), + [anon_sym_type] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_unsafe] = ACTIONS(2816), + [anon_sym_use] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym_yield] = ACTIONS(2816), + [anon_sym_move] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [sym_integer_literal] = ACTIONS(2814), + [aux_sym_string_literal_token1] = ACTIONS(2814), + [sym_char_literal] = ACTIONS(2814), + [anon_sym_true] = ACTIONS(2816), + [anon_sym_false] = ACTIONS(2816), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2816), + [sym_super] = ACTIONS(2816), + [sym_crate] = ACTIONS(2816), + [sym_metavariable] = ACTIONS(2814), + [sym__raw_string_literal_start] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), }, [STATE(726)] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_macro_rules_BANG] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_u8] = ACTIONS(2834), - [anon_sym_i8] = ACTIONS(2834), - [anon_sym_u16] = ACTIONS(2834), - [anon_sym_i16] = ACTIONS(2834), - [anon_sym_u32] = ACTIONS(2834), - [anon_sym_i32] = ACTIONS(2834), - [anon_sym_u64] = ACTIONS(2834), - [anon_sym_i64] = ACTIONS(2834), - [anon_sym_u128] = ACTIONS(2834), - [anon_sym_i128] = ACTIONS(2834), - [anon_sym_isize] = ACTIONS(2834), - [anon_sym_usize] = ACTIONS(2834), - [anon_sym_f32] = ACTIONS(2834), - [anon_sym_f64] = ACTIONS(2834), - [anon_sym_bool] = ACTIONS(2834), - [anon_sym_str] = ACTIONS(2834), - [anon_sym_char] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_DOT_DOT] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2834), - [anon_sym_async] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_fn] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_gen] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_impl] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_loop] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_mod] = ACTIONS(2834), - [anon_sym_pub] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_trait] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_unsafe] = ACTIONS(2834), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_extern] = ACTIONS(2834), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_move] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [sym_integer_literal] = ACTIONS(2832), - [aux_sym_string_literal_token1] = ACTIONS(2832), - [sym_char_literal] = ACTIONS(2832), - [anon_sym_true] = ACTIONS(2834), - [anon_sym_false] = ACTIONS(2834), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2834), - [sym_super] = ACTIONS(2834), - [sym_crate] = ACTIONS(2834), - [sym_metavariable] = ACTIONS(2832), - [sym__raw_string_literal_start] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_macro_rules_BANG] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_u8] = ACTIONS(2820), + [anon_sym_i8] = ACTIONS(2820), + [anon_sym_u16] = ACTIONS(2820), + [anon_sym_i16] = ACTIONS(2820), + [anon_sym_u32] = ACTIONS(2820), + [anon_sym_i32] = ACTIONS(2820), + [anon_sym_u64] = ACTIONS(2820), + [anon_sym_i64] = ACTIONS(2820), + [anon_sym_u128] = ACTIONS(2820), + [anon_sym_i128] = ACTIONS(2820), + [anon_sym_isize] = ACTIONS(2820), + [anon_sym_usize] = ACTIONS(2820), + [anon_sym_f32] = ACTIONS(2820), + [anon_sym_f64] = ACTIONS(2820), + [anon_sym_bool] = ACTIONS(2820), + [anon_sym_str] = ACTIONS(2820), + [anon_sym_char] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_DOT_DOT] = ACTIONS(2818), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2820), + [anon_sym_async] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_fn] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_gen] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_impl] = ACTIONS(2820), + [anon_sym_let] = ACTIONS(2820), + [anon_sym_loop] = ACTIONS(2820), + [anon_sym_match] = ACTIONS(2820), + [anon_sym_mod] = ACTIONS(2820), + [anon_sym_pub] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_trait] = ACTIONS(2820), + [anon_sym_type] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_unsafe] = ACTIONS(2820), + [anon_sym_use] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_yield] = ACTIONS(2820), + [anon_sym_move] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [sym_integer_literal] = ACTIONS(2818), + [aux_sym_string_literal_token1] = ACTIONS(2818), + [sym_char_literal] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2820), + [anon_sym_false] = ACTIONS(2820), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2820), + [sym_super] = ACTIONS(2820), + [sym_crate] = ACTIONS(2820), + [sym_metavariable] = ACTIONS(2818), + [sym__raw_string_literal_start] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2818), }, [STATE(727)] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_macro_rules_BANG] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_u8] = ACTIONS(2838), - [anon_sym_i8] = ACTIONS(2838), - [anon_sym_u16] = ACTIONS(2838), - [anon_sym_i16] = ACTIONS(2838), - [anon_sym_u32] = ACTIONS(2838), - [anon_sym_i32] = ACTIONS(2838), - [anon_sym_u64] = ACTIONS(2838), - [anon_sym_i64] = ACTIONS(2838), - [anon_sym_u128] = ACTIONS(2838), - [anon_sym_i128] = ACTIONS(2838), - [anon_sym_isize] = ACTIONS(2838), - [anon_sym_usize] = ACTIONS(2838), - [anon_sym_f32] = ACTIONS(2838), - [anon_sym_f64] = ACTIONS(2838), - [anon_sym_bool] = ACTIONS(2838), - [anon_sym_str] = ACTIONS(2838), - [anon_sym_char] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_DOT_DOT] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2838), - [anon_sym_async] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_fn] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_gen] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_impl] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_loop] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_mod] = ACTIONS(2838), - [anon_sym_pub] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_trait] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_unsafe] = ACTIONS(2838), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_move] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [sym_integer_literal] = ACTIONS(2836), - [aux_sym_string_literal_token1] = ACTIONS(2836), - [sym_char_literal] = ACTIONS(2836), - [anon_sym_true] = ACTIONS(2838), - [anon_sym_false] = ACTIONS(2838), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2838), - [sym_super] = ACTIONS(2838), - [sym_crate] = ACTIONS(2838), - [sym_metavariable] = ACTIONS(2836), - [sym__raw_string_literal_start] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_macro_rules_BANG] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_u8] = ACTIONS(2824), + [anon_sym_i8] = ACTIONS(2824), + [anon_sym_u16] = ACTIONS(2824), + [anon_sym_i16] = ACTIONS(2824), + [anon_sym_u32] = ACTIONS(2824), + [anon_sym_i32] = ACTIONS(2824), + [anon_sym_u64] = ACTIONS(2824), + [anon_sym_i64] = ACTIONS(2824), + [anon_sym_u128] = ACTIONS(2824), + [anon_sym_i128] = ACTIONS(2824), + [anon_sym_isize] = ACTIONS(2824), + [anon_sym_usize] = ACTIONS(2824), + [anon_sym_f32] = ACTIONS(2824), + [anon_sym_f64] = ACTIONS(2824), + [anon_sym_bool] = ACTIONS(2824), + [anon_sym_str] = ACTIONS(2824), + [anon_sym_char] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_DOT_DOT] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_fn] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_gen] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_impl] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_loop] = ACTIONS(2824), + [anon_sym_match] = ACTIONS(2824), + [anon_sym_mod] = ACTIONS(2824), + [anon_sym_pub] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_trait] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_unsafe] = ACTIONS(2824), + [anon_sym_use] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(2824), + [anon_sym_move] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [sym_integer_literal] = ACTIONS(2822), + [aux_sym_string_literal_token1] = ACTIONS(2822), + [sym_char_literal] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_crate] = ACTIONS(2824), + [sym_metavariable] = ACTIONS(2822), + [sym__raw_string_literal_start] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), }, [STATE(728)] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2842), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_macro_rules_BANG] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_u8] = ACTIONS(2842), - [anon_sym_i8] = ACTIONS(2842), - [anon_sym_u16] = ACTIONS(2842), - [anon_sym_i16] = ACTIONS(2842), - [anon_sym_u32] = ACTIONS(2842), - [anon_sym_i32] = ACTIONS(2842), - [anon_sym_u64] = ACTIONS(2842), - [anon_sym_i64] = ACTIONS(2842), - [anon_sym_u128] = ACTIONS(2842), - [anon_sym_i128] = ACTIONS(2842), - [anon_sym_isize] = ACTIONS(2842), - [anon_sym_usize] = ACTIONS(2842), - [anon_sym_f32] = ACTIONS(2842), - [anon_sym_f64] = ACTIONS(2842), - [anon_sym_bool] = ACTIONS(2842), - [anon_sym_str] = ACTIONS(2842), - [anon_sym_char] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_default] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_gen] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_impl] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_loop] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_mod] = ACTIONS(2842), - [anon_sym_pub] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_static] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_trait] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_unsafe] = ACTIONS(2842), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_extern] = ACTIONS(2842), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_move] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [sym_integer_literal] = ACTIONS(2840), - [aux_sym_string_literal_token1] = ACTIONS(2840), - [sym_char_literal] = ACTIONS(2840), - [anon_sym_true] = ACTIONS(2842), - [anon_sym_false] = ACTIONS(2842), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2842), - [sym_super] = ACTIONS(2842), - [sym_crate] = ACTIONS(2842), - [sym_metavariable] = ACTIONS(2840), - [sym__raw_string_literal_start] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_macro_rules_BANG] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_u8] = ACTIONS(2828), + [anon_sym_i8] = ACTIONS(2828), + [anon_sym_u16] = ACTIONS(2828), + [anon_sym_i16] = ACTIONS(2828), + [anon_sym_u32] = ACTIONS(2828), + [anon_sym_i32] = ACTIONS(2828), + [anon_sym_u64] = ACTIONS(2828), + [anon_sym_i64] = ACTIONS(2828), + [anon_sym_u128] = ACTIONS(2828), + [anon_sym_i128] = ACTIONS(2828), + [anon_sym_isize] = ACTIONS(2828), + [anon_sym_usize] = ACTIONS(2828), + [anon_sym_f32] = ACTIONS(2828), + [anon_sym_f64] = ACTIONS(2828), + [anon_sym_bool] = ACTIONS(2828), + [anon_sym_str] = ACTIONS(2828), + [anon_sym_char] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_DOT_DOT] = ACTIONS(2826), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_fn] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_gen] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_impl] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_loop] = ACTIONS(2828), + [anon_sym_match] = ACTIONS(2828), + [anon_sym_mod] = ACTIONS(2828), + [anon_sym_pub] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_trait] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_unsafe] = ACTIONS(2828), + [anon_sym_use] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_move] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [sym_integer_literal] = ACTIONS(2826), + [aux_sym_string_literal_token1] = ACTIONS(2826), + [sym_char_literal] = ACTIONS(2826), + [anon_sym_true] = ACTIONS(2828), + [anon_sym_false] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_crate] = ACTIONS(2828), + [sym_metavariable] = ACTIONS(2826), + [sym__raw_string_literal_start] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2826), }, [STATE(729)] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_macro_rules_BANG] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_u8] = ACTIONS(2846), - [anon_sym_i8] = ACTIONS(2846), - [anon_sym_u16] = ACTIONS(2846), - [anon_sym_i16] = ACTIONS(2846), - [anon_sym_u32] = ACTIONS(2846), - [anon_sym_i32] = ACTIONS(2846), - [anon_sym_u64] = ACTIONS(2846), - [anon_sym_i64] = ACTIONS(2846), - [anon_sym_u128] = ACTIONS(2846), - [anon_sym_i128] = ACTIONS(2846), - [anon_sym_isize] = ACTIONS(2846), - [anon_sym_usize] = ACTIONS(2846), - [anon_sym_f32] = ACTIONS(2846), - [anon_sym_f64] = ACTIONS(2846), - [anon_sym_bool] = ACTIONS(2846), - [anon_sym_str] = ACTIONS(2846), - [anon_sym_char] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_DOT_DOT] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_default] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_gen] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_impl] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_loop] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_mod] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_static] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_trait] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_extern] = ACTIONS(2846), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_move] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [sym_integer_literal] = ACTIONS(2844), - [aux_sym_string_literal_token1] = ACTIONS(2844), - [sym_char_literal] = ACTIONS(2844), - [anon_sym_true] = ACTIONS(2846), - [anon_sym_false] = ACTIONS(2846), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2846), - [sym_super] = ACTIONS(2846), - [sym_crate] = ACTIONS(2846), - [sym_metavariable] = ACTIONS(2844), - [sym__raw_string_literal_start] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_macro_rules_BANG] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_u8] = ACTIONS(2832), + [anon_sym_i8] = ACTIONS(2832), + [anon_sym_u16] = ACTIONS(2832), + [anon_sym_i16] = ACTIONS(2832), + [anon_sym_u32] = ACTIONS(2832), + [anon_sym_i32] = ACTIONS(2832), + [anon_sym_u64] = ACTIONS(2832), + [anon_sym_i64] = ACTIONS(2832), + [anon_sym_u128] = ACTIONS(2832), + [anon_sym_i128] = ACTIONS(2832), + [anon_sym_isize] = ACTIONS(2832), + [anon_sym_usize] = ACTIONS(2832), + [anon_sym_f32] = ACTIONS(2832), + [anon_sym_f64] = ACTIONS(2832), + [anon_sym_bool] = ACTIONS(2832), + [anon_sym_str] = ACTIONS(2832), + [anon_sym_char] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_DOT_DOT] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_async] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_fn] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_gen] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_impl] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_mod] = ACTIONS(2832), + [anon_sym_pub] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_trait] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_unsafe] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_yield] = ACTIONS(2832), + [anon_sym_move] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [sym_integer_literal] = ACTIONS(2830), + [aux_sym_string_literal_token1] = ACTIONS(2830), + [sym_char_literal] = ACTIONS(2830), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2832), + [sym_super] = ACTIONS(2832), + [sym_crate] = ACTIONS(2832), + [sym_metavariable] = ACTIONS(2830), + [sym__raw_string_literal_start] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2830), }, [STATE(730)] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_macro_rules_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_u8] = ACTIONS(2850), - [anon_sym_i8] = ACTIONS(2850), - [anon_sym_u16] = ACTIONS(2850), - [anon_sym_i16] = ACTIONS(2850), - [anon_sym_u32] = ACTIONS(2850), - [anon_sym_i32] = ACTIONS(2850), - [anon_sym_u64] = ACTIONS(2850), - [anon_sym_i64] = ACTIONS(2850), - [anon_sym_u128] = ACTIONS(2850), - [anon_sym_i128] = ACTIONS(2850), - [anon_sym_isize] = ACTIONS(2850), - [anon_sym_usize] = ACTIONS(2850), - [anon_sym_f32] = ACTIONS(2850), - [anon_sym_f64] = ACTIONS(2850), - [anon_sym_bool] = ACTIONS(2850), - [anon_sym_str] = ACTIONS(2850), - [anon_sym_char] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_DOT_DOT] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_macro_rules_BANG] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_u8] = ACTIONS(2836), + [anon_sym_i8] = ACTIONS(2836), + [anon_sym_u16] = ACTIONS(2836), + [anon_sym_i16] = ACTIONS(2836), + [anon_sym_u32] = ACTIONS(2836), + [anon_sym_i32] = ACTIONS(2836), + [anon_sym_u64] = ACTIONS(2836), + [anon_sym_i64] = ACTIONS(2836), + [anon_sym_u128] = ACTIONS(2836), + [anon_sym_i128] = ACTIONS(2836), + [anon_sym_isize] = ACTIONS(2836), + [anon_sym_usize] = ACTIONS(2836), + [anon_sym_f32] = ACTIONS(2836), + [anon_sym_f64] = ACTIONS(2836), + [anon_sym_bool] = ACTIONS(2836), + [anon_sym_str] = ACTIONS(2836), + [anon_sym_char] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_DOT_DOT] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_async] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_fn] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_gen] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_impl] = ACTIONS(2836), + [anon_sym_let] = ACTIONS(2836), + [anon_sym_loop] = ACTIONS(2836), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_mod] = ACTIONS(2836), + [anon_sym_pub] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_trait] = ACTIONS(2836), + [anon_sym_type] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_unsafe] = ACTIONS(2836), + [anon_sym_use] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym_yield] = ACTIONS(2836), + [anon_sym_move] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [sym_integer_literal] = ACTIONS(2834), + [aux_sym_string_literal_token1] = ACTIONS(2834), + [sym_char_literal] = ACTIONS(2834), + [anon_sym_true] = ACTIONS(2836), + [anon_sym_false] = ACTIONS(2836), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2836), + [sym_super] = ACTIONS(2836), + [sym_crate] = ACTIONS(2836), + [sym_metavariable] = ACTIONS(2834), + [sym__raw_string_literal_start] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2834), }, [STATE(731)] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2852), - [anon_sym_macro_rules_BANG] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_u8] = ACTIONS(2854), - [anon_sym_i8] = ACTIONS(2854), - [anon_sym_u16] = ACTIONS(2854), - [anon_sym_i16] = ACTIONS(2854), - [anon_sym_u32] = ACTIONS(2854), - [anon_sym_i32] = ACTIONS(2854), - [anon_sym_u64] = ACTIONS(2854), - [anon_sym_i64] = ACTIONS(2854), - [anon_sym_u128] = ACTIONS(2854), - [anon_sym_i128] = ACTIONS(2854), - [anon_sym_isize] = ACTIONS(2854), - [anon_sym_usize] = ACTIONS(2854), - [anon_sym_f32] = ACTIONS(2854), - [anon_sym_f64] = ACTIONS(2854), - [anon_sym_bool] = ACTIONS(2854), - [anon_sym_str] = ACTIONS(2854), - [anon_sym_char] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_DOT_DOT] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2854), - [anon_sym_async] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym_macro_rules_BANG] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_u8] = ACTIONS(2840), + [anon_sym_i8] = ACTIONS(2840), + [anon_sym_u16] = ACTIONS(2840), + [anon_sym_i16] = ACTIONS(2840), + [anon_sym_u32] = ACTIONS(2840), + [anon_sym_i32] = ACTIONS(2840), + [anon_sym_u64] = ACTIONS(2840), + [anon_sym_i64] = ACTIONS(2840), + [anon_sym_u128] = ACTIONS(2840), + [anon_sym_i128] = ACTIONS(2840), + [anon_sym_isize] = ACTIONS(2840), + [anon_sym_usize] = ACTIONS(2840), + [anon_sym_f32] = ACTIONS(2840), + [anon_sym_f64] = ACTIONS(2840), + [anon_sym_bool] = ACTIONS(2840), + [anon_sym_str] = ACTIONS(2840), + [anon_sym_char] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_DOT_DOT] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_async] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_fn] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_gen] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_impl] = ACTIONS(2840), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_loop] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2840), + [anon_sym_mod] = ACTIONS(2840), + [anon_sym_pub] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_trait] = ACTIONS(2840), + [anon_sym_type] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2840), + [anon_sym_use] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym_yield] = ACTIONS(2840), + [anon_sym_move] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [sym_integer_literal] = ACTIONS(2838), + [aux_sym_string_literal_token1] = ACTIONS(2838), + [sym_char_literal] = ACTIONS(2838), + [anon_sym_true] = ACTIONS(2840), + [anon_sym_false] = ACTIONS(2840), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2840), + [sym_super] = ACTIONS(2840), + [sym_crate] = ACTIONS(2840), + [sym_metavariable] = ACTIONS(2838), + [sym__raw_string_literal_start] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2838), }, [STATE(732)] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_macro_rules_BANG] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_u8] = ACTIONS(2858), - [anon_sym_i8] = ACTIONS(2858), - [anon_sym_u16] = ACTIONS(2858), - [anon_sym_i16] = ACTIONS(2858), - [anon_sym_u32] = ACTIONS(2858), - [anon_sym_i32] = ACTIONS(2858), - [anon_sym_u64] = ACTIONS(2858), - [anon_sym_i64] = ACTIONS(2858), - [anon_sym_u128] = ACTIONS(2858), - [anon_sym_i128] = ACTIONS(2858), - [anon_sym_isize] = ACTIONS(2858), - [anon_sym_usize] = ACTIONS(2858), - [anon_sym_f32] = ACTIONS(2858), - [anon_sym_f64] = ACTIONS(2858), - [anon_sym_bool] = ACTIONS(2858), - [anon_sym_str] = ACTIONS(2858), - [anon_sym_char] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_DOT_DOT] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_gen] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_impl] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_loop] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_mod] = ACTIONS(2858), - [anon_sym_pub] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_trait] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_union] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_extern] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_move] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [sym_integer_literal] = ACTIONS(2856), - [aux_sym_string_literal_token1] = ACTIONS(2856), - [sym_char_literal] = ACTIONS(2856), - [anon_sym_true] = ACTIONS(2858), - [anon_sym_false] = ACTIONS(2858), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2858), - [sym_super] = ACTIONS(2858), - [sym_crate] = ACTIONS(2858), - [sym_metavariable] = ACTIONS(2856), - [sym__raw_string_literal_start] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_macro_rules_BANG] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_u8] = ACTIONS(2844), + [anon_sym_i8] = ACTIONS(2844), + [anon_sym_u16] = ACTIONS(2844), + [anon_sym_i16] = ACTIONS(2844), + [anon_sym_u32] = ACTIONS(2844), + [anon_sym_i32] = ACTIONS(2844), + [anon_sym_u64] = ACTIONS(2844), + [anon_sym_i64] = ACTIONS(2844), + [anon_sym_u128] = ACTIONS(2844), + [anon_sym_i128] = ACTIONS(2844), + [anon_sym_isize] = ACTIONS(2844), + [anon_sym_usize] = ACTIONS(2844), + [anon_sym_f32] = ACTIONS(2844), + [anon_sym_f64] = ACTIONS(2844), + [anon_sym_bool] = ACTIONS(2844), + [anon_sym_str] = ACTIONS(2844), + [anon_sym_char] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_DOT_DOT] = ACTIONS(2842), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2844), + [anon_sym_async] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_gen] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_impl] = ACTIONS(2844), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_loop] = ACTIONS(2844), + [anon_sym_match] = ACTIONS(2844), + [anon_sym_mod] = ACTIONS(2844), + [anon_sym_pub] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_trait] = ACTIONS(2844), + [anon_sym_type] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_unsafe] = ACTIONS(2844), + [anon_sym_use] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym_yield] = ACTIONS(2844), + [anon_sym_move] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [sym_integer_literal] = ACTIONS(2842), + [aux_sym_string_literal_token1] = ACTIONS(2842), + [sym_char_literal] = ACTIONS(2842), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2844), + [sym_super] = ACTIONS(2844), + [sym_crate] = ACTIONS(2844), + [sym_metavariable] = ACTIONS(2842), + [sym__raw_string_literal_start] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2842), }, [STATE(733)] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_macro_rules_BANG] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_u8] = ACTIONS(2862), - [anon_sym_i8] = ACTIONS(2862), - [anon_sym_u16] = ACTIONS(2862), - [anon_sym_i16] = ACTIONS(2862), - [anon_sym_u32] = ACTIONS(2862), - [anon_sym_i32] = ACTIONS(2862), - [anon_sym_u64] = ACTIONS(2862), - [anon_sym_i64] = ACTIONS(2862), - [anon_sym_u128] = ACTIONS(2862), - [anon_sym_i128] = ACTIONS(2862), - [anon_sym_isize] = ACTIONS(2862), - [anon_sym_usize] = ACTIONS(2862), - [anon_sym_f32] = ACTIONS(2862), - [anon_sym_f64] = ACTIONS(2862), - [anon_sym_bool] = ACTIONS(2862), - [anon_sym_str] = ACTIONS(2862), - [anon_sym_char] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_DOT_DOT] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2862), - [anon_sym_async] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_gen] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_impl] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_loop] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_mod] = ACTIONS(2862), - [anon_sym_pub] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_trait] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_union] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_extern] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_move] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [sym_integer_literal] = ACTIONS(2860), - [aux_sym_string_literal_token1] = ACTIONS(2860), - [sym_char_literal] = ACTIONS(2860), - [anon_sym_true] = ACTIONS(2862), - [anon_sym_false] = ACTIONS(2862), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2862), - [sym_super] = ACTIONS(2862), - [sym_crate] = ACTIONS(2862), - [sym_metavariable] = ACTIONS(2860), - [sym__raw_string_literal_start] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_macro_rules_BANG] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_u8] = ACTIONS(2848), + [anon_sym_i8] = ACTIONS(2848), + [anon_sym_u16] = ACTIONS(2848), + [anon_sym_i16] = ACTIONS(2848), + [anon_sym_u32] = ACTIONS(2848), + [anon_sym_i32] = ACTIONS(2848), + [anon_sym_u64] = ACTIONS(2848), + [anon_sym_i64] = ACTIONS(2848), + [anon_sym_u128] = ACTIONS(2848), + [anon_sym_i128] = ACTIONS(2848), + [anon_sym_isize] = ACTIONS(2848), + [anon_sym_usize] = ACTIONS(2848), + [anon_sym_f32] = ACTIONS(2848), + [anon_sym_f64] = ACTIONS(2848), + [anon_sym_bool] = ACTIONS(2848), + [anon_sym_str] = ACTIONS(2848), + [anon_sym_char] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_DOT_DOT] = ACTIONS(2846), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2848), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_fn] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_gen] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_impl] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_loop] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_mod] = ACTIONS(2848), + [anon_sym_pub] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_trait] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(2848), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_move] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [sym_integer_literal] = ACTIONS(2846), + [aux_sym_string_literal_token1] = ACTIONS(2846), + [sym_char_literal] = ACTIONS(2846), + [anon_sym_true] = ACTIONS(2848), + [anon_sym_false] = ACTIONS(2848), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2848), + [sym_super] = ACTIONS(2848), + [sym_crate] = ACTIONS(2848), + [sym_metavariable] = ACTIONS(2846), + [sym__raw_string_literal_start] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), }, [STATE(734)] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_macro_rules_BANG] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_u8] = ACTIONS(2866), - [anon_sym_i8] = ACTIONS(2866), - [anon_sym_u16] = ACTIONS(2866), - [anon_sym_i16] = ACTIONS(2866), - [anon_sym_u32] = ACTIONS(2866), - [anon_sym_i32] = ACTIONS(2866), - [anon_sym_u64] = ACTIONS(2866), - [anon_sym_i64] = ACTIONS(2866), - [anon_sym_u128] = ACTIONS(2866), - [anon_sym_i128] = ACTIONS(2866), - [anon_sym_isize] = ACTIONS(2866), - [anon_sym_usize] = ACTIONS(2866), - [anon_sym_f32] = ACTIONS(2866), - [anon_sym_f64] = ACTIONS(2866), - [anon_sym_bool] = ACTIONS(2866), - [anon_sym_str] = ACTIONS(2866), - [anon_sym_char] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_DOT_DOT] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_POUND] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2866), - [anon_sym_async] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_const] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_default] = ACTIONS(2866), - [anon_sym_enum] = ACTIONS(2866), - [anon_sym_fn] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_gen] = ACTIONS(2866), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_macro_rules_BANG] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_u8] = ACTIONS(2852), + [anon_sym_i8] = ACTIONS(2852), + [anon_sym_u16] = ACTIONS(2852), + [anon_sym_i16] = ACTIONS(2852), + [anon_sym_u32] = ACTIONS(2852), + [anon_sym_i32] = ACTIONS(2852), + [anon_sym_u64] = ACTIONS(2852), + [anon_sym_i64] = ACTIONS(2852), + [anon_sym_u128] = ACTIONS(2852), + [anon_sym_i128] = ACTIONS(2852), + [anon_sym_isize] = ACTIONS(2852), + [anon_sym_usize] = ACTIONS(2852), + [anon_sym_f32] = ACTIONS(2852), + [anon_sym_f64] = ACTIONS(2852), + [anon_sym_bool] = ACTIONS(2852), + [anon_sym_str] = ACTIONS(2852), + [anon_sym_char] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2852), + [anon_sym_async] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_fn] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_gen] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_impl] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_loop] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_mod] = ACTIONS(2852), + [anon_sym_pub] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_trait] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_unsafe] = ACTIONS(2852), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_move] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [sym_integer_literal] = ACTIONS(2850), + [aux_sym_string_literal_token1] = ACTIONS(2850), + [sym_char_literal] = ACTIONS(2850), + [anon_sym_true] = ACTIONS(2852), + [anon_sym_false] = ACTIONS(2852), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2852), + [sym_super] = ACTIONS(2852), + [sym_crate] = ACTIONS(2852), + [sym_metavariable] = ACTIONS(2850), + [sym__raw_string_literal_start] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2850), }, [STATE(735)] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_macro_rules_BANG] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_u8] = ACTIONS(2870), - [anon_sym_i8] = ACTIONS(2870), - [anon_sym_u16] = ACTIONS(2870), - [anon_sym_i16] = ACTIONS(2870), - [anon_sym_u32] = ACTIONS(2870), - [anon_sym_i32] = ACTIONS(2870), - [anon_sym_u64] = ACTIONS(2870), - [anon_sym_i64] = ACTIONS(2870), - [anon_sym_u128] = ACTIONS(2870), - [anon_sym_i128] = ACTIONS(2870), - [anon_sym_isize] = ACTIONS(2870), - [anon_sym_usize] = ACTIONS(2870), - [anon_sym_f32] = ACTIONS(2870), - [anon_sym_f64] = ACTIONS(2870), - [anon_sym_bool] = ACTIONS(2870), - [anon_sym_str] = ACTIONS(2870), - [anon_sym_char] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_DOT_DOT] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2870), - [anon_sym_async] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_default] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_gen] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_impl] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_loop] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_mod] = ACTIONS(2870), - [anon_sym_pub] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_trait] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_extern] = ACTIONS(2870), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_move] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [sym_integer_literal] = ACTIONS(2868), - [aux_sym_string_literal_token1] = ACTIONS(2868), - [sym_char_literal] = ACTIONS(2868), - [anon_sym_true] = ACTIONS(2870), - [anon_sym_false] = ACTIONS(2870), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2870), - [sym_super] = ACTIONS(2870), - [sym_crate] = ACTIONS(2870), - [sym_metavariable] = ACTIONS(2868), - [sym__raw_string_literal_start] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_macro_rules_BANG] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_u8] = ACTIONS(2856), + [anon_sym_i8] = ACTIONS(2856), + [anon_sym_u16] = ACTIONS(2856), + [anon_sym_i16] = ACTIONS(2856), + [anon_sym_u32] = ACTIONS(2856), + [anon_sym_i32] = ACTIONS(2856), + [anon_sym_u64] = ACTIONS(2856), + [anon_sym_i64] = ACTIONS(2856), + [anon_sym_u128] = ACTIONS(2856), + [anon_sym_i128] = ACTIONS(2856), + [anon_sym_isize] = ACTIONS(2856), + [anon_sym_usize] = ACTIONS(2856), + [anon_sym_f32] = ACTIONS(2856), + [anon_sym_f64] = ACTIONS(2856), + [anon_sym_bool] = ACTIONS(2856), + [anon_sym_str] = ACTIONS(2856), + [anon_sym_char] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_DOT_DOT] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2856), + [anon_sym_async] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_fn] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_gen] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_impl] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_loop] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_mod] = ACTIONS(2856), + [anon_sym_pub] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_trait] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_unsafe] = ACTIONS(2856), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_move] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [sym_integer_literal] = ACTIONS(2854), + [aux_sym_string_literal_token1] = ACTIONS(2854), + [sym_char_literal] = ACTIONS(2854), + [anon_sym_true] = ACTIONS(2856), + [anon_sym_false] = ACTIONS(2856), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_crate] = ACTIONS(2856), + [sym_metavariable] = ACTIONS(2854), + [sym__raw_string_literal_start] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), }, [STATE(736)] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_macro_rules_BANG] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_u8] = ACTIONS(2874), - [anon_sym_i8] = ACTIONS(2874), - [anon_sym_u16] = ACTIONS(2874), - [anon_sym_i16] = ACTIONS(2874), - [anon_sym_u32] = ACTIONS(2874), - [anon_sym_i32] = ACTIONS(2874), - [anon_sym_u64] = ACTIONS(2874), - [anon_sym_i64] = ACTIONS(2874), - [anon_sym_u128] = ACTIONS(2874), - [anon_sym_i128] = ACTIONS(2874), - [anon_sym_isize] = ACTIONS(2874), - [anon_sym_usize] = ACTIONS(2874), - [anon_sym_f32] = ACTIONS(2874), - [anon_sym_f64] = ACTIONS(2874), - [anon_sym_bool] = ACTIONS(2874), - [anon_sym_str] = ACTIONS(2874), - [anon_sym_char] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_DOT_DOT] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2874), - [anon_sym_async] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_default] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_gen] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_impl] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_loop] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_mod] = ACTIONS(2874), - [anon_sym_pub] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_trait] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_extern] = ACTIONS(2874), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_move] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [sym_integer_literal] = ACTIONS(2872), - [aux_sym_string_literal_token1] = ACTIONS(2872), - [sym_char_literal] = ACTIONS(2872), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2874), - [sym_super] = ACTIONS(2874), - [sym_crate] = ACTIONS(2874), - [sym_metavariable] = ACTIONS(2872), - [sym__raw_string_literal_start] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_macro_rules_BANG] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_u8] = ACTIONS(2860), + [anon_sym_i8] = ACTIONS(2860), + [anon_sym_u16] = ACTIONS(2860), + [anon_sym_i16] = ACTIONS(2860), + [anon_sym_u32] = ACTIONS(2860), + [anon_sym_i32] = ACTIONS(2860), + [anon_sym_u64] = ACTIONS(2860), + [anon_sym_i64] = ACTIONS(2860), + [anon_sym_u128] = ACTIONS(2860), + [anon_sym_i128] = ACTIONS(2860), + [anon_sym_isize] = ACTIONS(2860), + [anon_sym_usize] = ACTIONS(2860), + [anon_sym_f32] = ACTIONS(2860), + [anon_sym_f64] = ACTIONS(2860), + [anon_sym_bool] = ACTIONS(2860), + [anon_sym_str] = ACTIONS(2860), + [anon_sym_char] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_DOT_DOT] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2860), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_fn] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_gen] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_impl] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_loop] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_mod] = ACTIONS(2860), + [anon_sym_pub] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_trait] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_unsafe] = ACTIONS(2860), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_move] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [sym_integer_literal] = ACTIONS(2858), + [aux_sym_string_literal_token1] = ACTIONS(2858), + [sym_char_literal] = ACTIONS(2858), + [anon_sym_true] = ACTIONS(2860), + [anon_sym_false] = ACTIONS(2860), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_crate] = ACTIONS(2860), + [sym_metavariable] = ACTIONS(2858), + [sym__raw_string_literal_start] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), }, [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_macro_rules_BANG] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_u8] = ACTIONS(2878), - [anon_sym_i8] = ACTIONS(2878), - [anon_sym_u16] = ACTIONS(2878), - [anon_sym_i16] = ACTIONS(2878), - [anon_sym_u32] = ACTIONS(2878), - [anon_sym_i32] = ACTIONS(2878), - [anon_sym_u64] = ACTIONS(2878), - [anon_sym_i64] = ACTIONS(2878), - [anon_sym_u128] = ACTIONS(2878), - [anon_sym_i128] = ACTIONS(2878), - [anon_sym_isize] = ACTIONS(2878), - [anon_sym_usize] = ACTIONS(2878), - [anon_sym_f32] = ACTIONS(2878), - [anon_sym_f64] = ACTIONS(2878), - [anon_sym_bool] = ACTIONS(2878), - [anon_sym_str] = ACTIONS(2878), - [anon_sym_char] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_DOT_DOT] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_async] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_gen] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_impl] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_loop] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_mod] = ACTIONS(2878), - [anon_sym_pub] = ACTIONS(2878), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_macro_rules_BANG] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_u8] = ACTIONS(2864), + [anon_sym_i8] = ACTIONS(2864), + [anon_sym_u16] = ACTIONS(2864), + [anon_sym_i16] = ACTIONS(2864), + [anon_sym_u32] = ACTIONS(2864), + [anon_sym_i32] = ACTIONS(2864), + [anon_sym_u64] = ACTIONS(2864), + [anon_sym_i64] = ACTIONS(2864), + [anon_sym_u128] = ACTIONS(2864), + [anon_sym_i128] = ACTIONS(2864), + [anon_sym_isize] = ACTIONS(2864), + [anon_sym_usize] = ACTIONS(2864), + [anon_sym_f32] = ACTIONS(2864), + [anon_sym_f64] = ACTIONS(2864), + [anon_sym_bool] = ACTIONS(2864), + [anon_sym_str] = ACTIONS(2864), + [anon_sym_char] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2864), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_fn] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_gen] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_impl] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_loop] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_mod] = ACTIONS(2864), + [anon_sym_pub] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_trait] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_unsafe] = ACTIONS(2864), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_move] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [sym_integer_literal] = ACTIONS(2862), + [aux_sym_string_literal_token1] = ACTIONS(2862), + [sym_char_literal] = ACTIONS(2862), + [anon_sym_true] = ACTIONS(2864), + [anon_sym_false] = ACTIONS(2864), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2864), + [sym_super] = ACTIONS(2864), + [sym_crate] = ACTIONS(2864), + [sym_metavariable] = ACTIONS(2862), + [sym__raw_string_literal_start] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), }, [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_macro_rules_BANG] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_u8] = ACTIONS(2882), - [anon_sym_i8] = ACTIONS(2882), - [anon_sym_u16] = ACTIONS(2882), - [anon_sym_i16] = ACTIONS(2882), - [anon_sym_u32] = ACTIONS(2882), - [anon_sym_i32] = ACTIONS(2882), - [anon_sym_u64] = ACTIONS(2882), - [anon_sym_i64] = ACTIONS(2882), - [anon_sym_u128] = ACTIONS(2882), - [anon_sym_i128] = ACTIONS(2882), - [anon_sym_isize] = ACTIONS(2882), - [anon_sym_usize] = ACTIONS(2882), - [anon_sym_f32] = ACTIONS(2882), - [anon_sym_f64] = ACTIONS(2882), - [anon_sym_bool] = ACTIONS(2882), - [anon_sym_str] = ACTIONS(2882), - [anon_sym_char] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_DOT_DOT] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2882), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_default] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [anon_sym_fn] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_gen] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_impl] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_loop] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_mod] = ACTIONS(2882), - [anon_sym_pub] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_trait] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_union] = ACTIONS(2882), - [anon_sym_unsafe] = ACTIONS(2882), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_extern] = ACTIONS(2882), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_move] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [sym_integer_literal] = ACTIONS(2880), - [aux_sym_string_literal_token1] = ACTIONS(2880), - [sym_char_literal] = ACTIONS(2880), - [anon_sym_true] = ACTIONS(2882), - [anon_sym_false] = ACTIONS(2882), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2882), - [sym_super] = ACTIONS(2882), - [sym_crate] = ACTIONS(2882), - [sym_metavariable] = ACTIONS(2880), - [sym__raw_string_literal_start] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_macro_rules_BANG] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_u8] = ACTIONS(2868), + [anon_sym_i8] = ACTIONS(2868), + [anon_sym_u16] = ACTIONS(2868), + [anon_sym_i16] = ACTIONS(2868), + [anon_sym_u32] = ACTIONS(2868), + [anon_sym_i32] = ACTIONS(2868), + [anon_sym_u64] = ACTIONS(2868), + [anon_sym_i64] = ACTIONS(2868), + [anon_sym_u128] = ACTIONS(2868), + [anon_sym_i128] = ACTIONS(2868), + [anon_sym_isize] = ACTIONS(2868), + [anon_sym_usize] = ACTIONS(2868), + [anon_sym_f32] = ACTIONS(2868), + [anon_sym_f64] = ACTIONS(2868), + [anon_sym_bool] = ACTIONS(2868), + [anon_sym_str] = ACTIONS(2868), + [anon_sym_char] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_DOT_DOT] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_fn] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_gen] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_impl] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_loop] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_mod] = ACTIONS(2868), + [anon_sym_pub] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_trait] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_unsafe] = ACTIONS(2868), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_move] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [sym_integer_literal] = ACTIONS(2866), + [aux_sym_string_literal_token1] = ACTIONS(2866), + [sym_char_literal] = ACTIONS(2866), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_crate] = ACTIONS(2868), + [sym_metavariable] = ACTIONS(2866), + [sym__raw_string_literal_start] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2866), }, [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_macro_rules_BANG] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_u8] = ACTIONS(2886), - [anon_sym_i8] = ACTIONS(2886), - [anon_sym_u16] = ACTIONS(2886), - [anon_sym_i16] = ACTIONS(2886), - [anon_sym_u32] = ACTIONS(2886), - [anon_sym_i32] = ACTIONS(2886), - [anon_sym_u64] = ACTIONS(2886), - [anon_sym_i64] = ACTIONS(2886), - [anon_sym_u128] = ACTIONS(2886), - [anon_sym_i128] = ACTIONS(2886), - [anon_sym_isize] = ACTIONS(2886), - [anon_sym_usize] = ACTIONS(2886), - [anon_sym_f32] = ACTIONS(2886), - [anon_sym_f64] = ACTIONS(2886), - [anon_sym_bool] = ACTIONS(2886), - [anon_sym_str] = ACTIONS(2886), - [anon_sym_char] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2886), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_default] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_gen] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_impl] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_loop] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_mod] = ACTIONS(2886), - [anon_sym_pub] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_trait] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_extern] = ACTIONS(2886), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_move] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [sym_integer_literal] = ACTIONS(2884), - [aux_sym_string_literal_token1] = ACTIONS(2884), - [sym_char_literal] = ACTIONS(2884), - [anon_sym_true] = ACTIONS(2886), - [anon_sym_false] = ACTIONS(2886), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2886), - [sym_super] = ACTIONS(2886), - [sym_crate] = ACTIONS(2886), - [sym_metavariable] = ACTIONS(2884), - [sym__raw_string_literal_start] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_macro_rules_BANG] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_u8] = ACTIONS(2872), + [anon_sym_i8] = ACTIONS(2872), + [anon_sym_u16] = ACTIONS(2872), + [anon_sym_i16] = ACTIONS(2872), + [anon_sym_u32] = ACTIONS(2872), + [anon_sym_i32] = ACTIONS(2872), + [anon_sym_u64] = ACTIONS(2872), + [anon_sym_i64] = ACTIONS(2872), + [anon_sym_u128] = ACTIONS(2872), + [anon_sym_i128] = ACTIONS(2872), + [anon_sym_isize] = ACTIONS(2872), + [anon_sym_usize] = ACTIONS(2872), + [anon_sym_f32] = ACTIONS(2872), + [anon_sym_f64] = ACTIONS(2872), + [anon_sym_bool] = ACTIONS(2872), + [anon_sym_str] = ACTIONS(2872), + [anon_sym_char] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2872), + [anon_sym_async] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_fn] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_gen] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_impl] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_loop] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_mod] = ACTIONS(2872), + [anon_sym_pub] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_trait] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_unsafe] = ACTIONS(2872), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_move] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [sym_integer_literal] = ACTIONS(2870), + [aux_sym_string_literal_token1] = ACTIONS(2870), + [sym_char_literal] = ACTIONS(2870), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2872), + [sym_super] = ACTIONS(2872), + [sym_crate] = ACTIONS(2872), + [sym_metavariable] = ACTIONS(2870), + [sym__raw_string_literal_start] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), }, [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_macro_rules_BANG] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_PIPE] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_DOT_DOT] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_POUND] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2890), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_gen] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_impl] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_loop] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_mod] = ACTIONS(2890), - [anon_sym_pub] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_trait] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [anon_sym_unsafe] = ACTIONS(2890), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_extern] = ACTIONS(2890), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_move] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [sym_integer_literal] = ACTIONS(2888), - [aux_sym_string_literal_token1] = ACTIONS(2888), - [sym_char_literal] = ACTIONS(2888), - [anon_sym_true] = ACTIONS(2890), - [anon_sym_false] = ACTIONS(2890), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2890), - [sym_super] = ACTIONS(2890), - [sym_crate] = ACTIONS(2890), - [sym_metavariable] = ACTIONS(2888), - [sym__raw_string_literal_start] = ACTIONS(2888), - [sym_float_literal] = ACTIONS(2888), + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_macro_rules_BANG] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_u8] = ACTIONS(2876), + [anon_sym_i8] = ACTIONS(2876), + [anon_sym_u16] = ACTIONS(2876), + [anon_sym_i16] = ACTIONS(2876), + [anon_sym_u32] = ACTIONS(2876), + [anon_sym_i32] = ACTIONS(2876), + [anon_sym_u64] = ACTIONS(2876), + [anon_sym_i64] = ACTIONS(2876), + [anon_sym_u128] = ACTIONS(2876), + [anon_sym_i128] = ACTIONS(2876), + [anon_sym_isize] = ACTIONS(2876), + [anon_sym_usize] = ACTIONS(2876), + [anon_sym_f32] = ACTIONS(2876), + [anon_sym_f64] = ACTIONS(2876), + [anon_sym_bool] = ACTIONS(2876), + [anon_sym_str] = ACTIONS(2876), + [anon_sym_char] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_DOT_DOT] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2876), + [anon_sym_async] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_fn] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_gen] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_impl] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_loop] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_mod] = ACTIONS(2876), + [anon_sym_pub] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_trait] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_unsafe] = ACTIONS(2876), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_move] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [sym_integer_literal] = ACTIONS(2874), + [aux_sym_string_literal_token1] = ACTIONS(2874), + [sym_char_literal] = ACTIONS(2874), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2876), + [sym_super] = ACTIONS(2876), + [sym_crate] = ACTIONS(2876), + [sym_metavariable] = ACTIONS(2874), + [sym__raw_string_literal_start] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), }, [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_macro_rules_BANG] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_u8] = ACTIONS(2894), - [anon_sym_i8] = ACTIONS(2894), - [anon_sym_u16] = ACTIONS(2894), - [anon_sym_i16] = ACTIONS(2894), - [anon_sym_u32] = ACTIONS(2894), - [anon_sym_i32] = ACTIONS(2894), - [anon_sym_u64] = ACTIONS(2894), - [anon_sym_i64] = ACTIONS(2894), - [anon_sym_u128] = ACTIONS(2894), - [anon_sym_i128] = ACTIONS(2894), - [anon_sym_isize] = ACTIONS(2894), - [anon_sym_usize] = ACTIONS(2894), - [anon_sym_f32] = ACTIONS(2894), - [anon_sym_f64] = ACTIONS(2894), - [anon_sym_bool] = ACTIONS(2894), - [anon_sym_str] = ACTIONS(2894), - [anon_sym_char] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_DOT_DOT] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_POUND] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2894), - [anon_sym_async] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_gen] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_impl] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_loop] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_mod] = ACTIONS(2894), - [anon_sym_pub] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_trait] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_extern] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_move] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [sym_integer_literal] = ACTIONS(2892), - [aux_sym_string_literal_token1] = ACTIONS(2892), - [sym_char_literal] = ACTIONS(2892), - [anon_sym_true] = ACTIONS(2894), - [anon_sym_false] = ACTIONS(2894), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2894), - [sym_super] = ACTIONS(2894), - [sym_crate] = ACTIONS(2894), - [sym_metavariable] = ACTIONS(2892), - [sym__raw_string_literal_start] = ACTIONS(2892), - [sym_float_literal] = ACTIONS(2892), + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_macro_rules_BANG] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_u8] = ACTIONS(2880), + [anon_sym_i8] = ACTIONS(2880), + [anon_sym_u16] = ACTIONS(2880), + [anon_sym_i16] = ACTIONS(2880), + [anon_sym_u32] = ACTIONS(2880), + [anon_sym_i32] = ACTIONS(2880), + [anon_sym_u64] = ACTIONS(2880), + [anon_sym_i64] = ACTIONS(2880), + [anon_sym_u128] = ACTIONS(2880), + [anon_sym_i128] = ACTIONS(2880), + [anon_sym_isize] = ACTIONS(2880), + [anon_sym_usize] = ACTIONS(2880), + [anon_sym_f32] = ACTIONS(2880), + [anon_sym_f64] = ACTIONS(2880), + [anon_sym_bool] = ACTIONS(2880), + [anon_sym_str] = ACTIONS(2880), + [anon_sym_char] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_DOT_DOT] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_POUND] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2880), + [anon_sym_async] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_gen] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_impl] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_loop] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_mod] = ACTIONS(2880), + [anon_sym_pub] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_trait] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_move] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [sym_integer_literal] = ACTIONS(2878), + [aux_sym_string_literal_token1] = ACTIONS(2878), + [sym_char_literal] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2880), + [sym_super] = ACTIONS(2880), + [sym_crate] = ACTIONS(2880), + [sym_metavariable] = ACTIONS(2878), + [sym__raw_string_literal_start] = ACTIONS(2878), + [sym_float_literal] = ACTIONS(2878), }, [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_macro_rules_BANG] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_u8] = ACTIONS(2898), - [anon_sym_i8] = ACTIONS(2898), - [anon_sym_u16] = ACTIONS(2898), - [anon_sym_i16] = ACTIONS(2898), - [anon_sym_u32] = ACTIONS(2898), - [anon_sym_i32] = ACTIONS(2898), - [anon_sym_u64] = ACTIONS(2898), - [anon_sym_i64] = ACTIONS(2898), - [anon_sym_u128] = ACTIONS(2898), - [anon_sym_i128] = ACTIONS(2898), - [anon_sym_isize] = ACTIONS(2898), - [anon_sym_usize] = ACTIONS(2898), - [anon_sym_f32] = ACTIONS(2898), - [anon_sym_f64] = ACTIONS(2898), - [anon_sym_bool] = ACTIONS(2898), - [anon_sym_str] = ACTIONS(2898), - [anon_sym_char] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_DOT_DOT] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_POUND] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2898), - [anon_sym_async] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_gen] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_impl] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_loop] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_mod] = ACTIONS(2898), - [anon_sym_pub] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_trait] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_extern] = ACTIONS(2898), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_move] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [sym_integer_literal] = ACTIONS(2896), - [aux_sym_string_literal_token1] = ACTIONS(2896), - [sym_char_literal] = ACTIONS(2896), - [anon_sym_true] = ACTIONS(2898), - [anon_sym_false] = ACTIONS(2898), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2898), - [sym_super] = ACTIONS(2898), - [sym_crate] = ACTIONS(2898), - [sym_metavariable] = ACTIONS(2896), - [sym__raw_string_literal_start] = ACTIONS(2896), - [sym_float_literal] = ACTIONS(2896), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_macro_rules_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_u8] = ACTIONS(2884), + [anon_sym_i8] = ACTIONS(2884), + [anon_sym_u16] = ACTIONS(2884), + [anon_sym_i16] = ACTIONS(2884), + [anon_sym_u32] = ACTIONS(2884), + [anon_sym_i32] = ACTIONS(2884), + [anon_sym_u64] = ACTIONS(2884), + [anon_sym_i64] = ACTIONS(2884), + [anon_sym_u128] = ACTIONS(2884), + [anon_sym_i128] = ACTIONS(2884), + [anon_sym_isize] = ACTIONS(2884), + [anon_sym_usize] = ACTIONS(2884), + [anon_sym_f32] = ACTIONS(2884), + [anon_sym_f64] = ACTIONS(2884), + [anon_sym_bool] = ACTIONS(2884), + [anon_sym_str] = ACTIONS(2884), + [anon_sym_char] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_fn] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_gen] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_impl] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_loop] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_mod] = ACTIONS(2884), + [anon_sym_pub] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_trait] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_unsafe] = ACTIONS(2884), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_move] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [sym_integer_literal] = ACTIONS(2882), + [aux_sym_string_literal_token1] = ACTIONS(2882), + [sym_char_literal] = ACTIONS(2882), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_crate] = ACTIONS(2884), + [sym_metavariable] = ACTIONS(2882), + [sym__raw_string_literal_start] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2882), }, [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_macro_rules_BANG] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_u8] = ACTIONS(2902), - [anon_sym_i8] = ACTIONS(2902), - [anon_sym_u16] = ACTIONS(2902), - [anon_sym_i16] = ACTIONS(2902), - [anon_sym_u32] = ACTIONS(2902), - [anon_sym_i32] = ACTIONS(2902), - [anon_sym_u64] = ACTIONS(2902), - [anon_sym_i64] = ACTIONS(2902), - [anon_sym_u128] = ACTIONS(2902), - [anon_sym_i128] = ACTIONS(2902), - [anon_sym_isize] = ACTIONS(2902), - [anon_sym_usize] = ACTIONS(2902), - [anon_sym_f32] = ACTIONS(2902), - [anon_sym_f64] = ACTIONS(2902), - [anon_sym_bool] = ACTIONS(2902), - [anon_sym_str] = ACTIONS(2902), - [anon_sym_char] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_DOT_DOT] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2902), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_gen] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_impl] = ACTIONS(2902), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_loop] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_mod] = ACTIONS(2902), - [anon_sym_pub] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_trait] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_extern] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2902), - [anon_sym_move] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [sym_integer_literal] = ACTIONS(2900), - [aux_sym_string_literal_token1] = ACTIONS(2900), - [sym_char_literal] = ACTIONS(2900), - [anon_sym_true] = ACTIONS(2902), - [anon_sym_false] = ACTIONS(2902), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2902), - [sym_super] = ACTIONS(2902), - [sym_crate] = ACTIONS(2902), - [sym_metavariable] = ACTIONS(2900), - [sym__raw_string_literal_start] = ACTIONS(2900), - [sym_float_literal] = ACTIONS(2900), + [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(744)] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_macro_rules_BANG] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_u8] = ACTIONS(2906), - [anon_sym_i8] = ACTIONS(2906), - [anon_sym_u16] = ACTIONS(2906), - [anon_sym_i16] = ACTIONS(2906), - [anon_sym_u32] = ACTIONS(2906), - [anon_sym_i32] = ACTIONS(2906), - [anon_sym_u64] = ACTIONS(2906), - [anon_sym_i64] = ACTIONS(2906), - [anon_sym_u128] = ACTIONS(2906), - [anon_sym_i128] = ACTIONS(2906), - [anon_sym_isize] = ACTIONS(2906), - [anon_sym_usize] = ACTIONS(2906), - [anon_sym_f32] = ACTIONS(2906), - [anon_sym_f64] = ACTIONS(2906), - [anon_sym_bool] = ACTIONS(2906), - [anon_sym_str] = ACTIONS(2906), - [anon_sym_char] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(2904), - [anon_sym_POUND] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_async] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_gen] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_impl] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_loop] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_mod] = ACTIONS(2906), - [anon_sym_pub] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_trait] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_extern] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_move] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [sym_integer_literal] = ACTIONS(2904), - [aux_sym_string_literal_token1] = ACTIONS(2904), - [sym_char_literal] = ACTIONS(2904), - [anon_sym_true] = ACTIONS(2906), - [anon_sym_false] = ACTIONS(2906), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2906), - [sym_super] = ACTIONS(2906), - [sym_crate] = ACTIONS(2906), - [sym_metavariable] = ACTIONS(2904), - [sym__raw_string_literal_start] = ACTIONS(2904), - [sym_float_literal] = ACTIONS(2904), + [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(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_macro_rules_BANG] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_u8] = ACTIONS(2910), - [anon_sym_i8] = ACTIONS(2910), - [anon_sym_u16] = ACTIONS(2910), - [anon_sym_i16] = ACTIONS(2910), - [anon_sym_u32] = ACTIONS(2910), - [anon_sym_i32] = ACTIONS(2910), - [anon_sym_u64] = ACTIONS(2910), - [anon_sym_i64] = ACTIONS(2910), - [anon_sym_u128] = ACTIONS(2910), - [anon_sym_i128] = ACTIONS(2910), - [anon_sym_isize] = ACTIONS(2910), - [anon_sym_usize] = ACTIONS(2910), - [anon_sym_f32] = ACTIONS(2910), - [anon_sym_f64] = ACTIONS(2910), - [anon_sym_bool] = ACTIONS(2910), - [anon_sym_str] = ACTIONS(2910), - [anon_sym_char] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_DOT_DOT] = ACTIONS(2908), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_POUND] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_async] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_gen] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_impl] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2910), - [anon_sym_loop] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_mod] = ACTIONS(2910), - [anon_sym_pub] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_trait] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_extern] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2910), - [anon_sym_move] = ACTIONS(2910), - [anon_sym_try] = ACTIONS(2910), - [sym_integer_literal] = ACTIONS(2908), - [aux_sym_string_literal_token1] = ACTIONS(2908), - [sym_char_literal] = ACTIONS(2908), - [anon_sym_true] = ACTIONS(2910), - [anon_sym_false] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_crate] = ACTIONS(2910), - [sym_metavariable] = ACTIONS(2908), - [sym__raw_string_literal_start] = ACTIONS(2908), - [sym_float_literal] = ACTIONS(2908), + [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(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_macro_rules_BANG] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_u8] = ACTIONS(2914), - [anon_sym_i8] = ACTIONS(2914), - [anon_sym_u16] = ACTIONS(2914), - [anon_sym_i16] = ACTIONS(2914), - [anon_sym_u32] = ACTIONS(2914), - [anon_sym_i32] = ACTIONS(2914), - [anon_sym_u64] = ACTIONS(2914), - [anon_sym_i64] = ACTIONS(2914), - [anon_sym_u128] = ACTIONS(2914), - [anon_sym_i128] = ACTIONS(2914), - [anon_sym_isize] = ACTIONS(2914), - [anon_sym_usize] = ACTIONS(2914), - [anon_sym_f32] = ACTIONS(2914), - [anon_sym_f64] = ACTIONS(2914), - [anon_sym_bool] = ACTIONS(2914), - [anon_sym_str] = ACTIONS(2914), - [anon_sym_char] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_DOT_DOT] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2912), - [anon_sym_POUND] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_async] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_gen] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_impl] = ACTIONS(2914), - [anon_sym_let] = ACTIONS(2914), - [anon_sym_loop] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_mod] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_trait] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2914), - [anon_sym_move] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2914), - [sym_integer_literal] = ACTIONS(2912), - [aux_sym_string_literal_token1] = ACTIONS(2912), - [sym_char_literal] = ACTIONS(2912), - [anon_sym_true] = ACTIONS(2914), - [anon_sym_false] = ACTIONS(2914), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2914), - [sym_super] = ACTIONS(2914), - [sym_crate] = ACTIONS(2914), - [sym_metavariable] = ACTIONS(2912), - [sym__raw_string_literal_start] = ACTIONS(2912), - [sym_float_literal] = ACTIONS(2912), + [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(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_macro_rules_BANG] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_u8] = ACTIONS(2918), - [anon_sym_i8] = ACTIONS(2918), - [anon_sym_u16] = ACTIONS(2918), - [anon_sym_i16] = ACTIONS(2918), - [anon_sym_u32] = ACTIONS(2918), - [anon_sym_i32] = ACTIONS(2918), - [anon_sym_u64] = ACTIONS(2918), - [anon_sym_i64] = ACTIONS(2918), - [anon_sym_u128] = ACTIONS(2918), - [anon_sym_i128] = ACTIONS(2918), - [anon_sym_isize] = ACTIONS(2918), - [anon_sym_usize] = ACTIONS(2918), - [anon_sym_f32] = ACTIONS(2918), - [anon_sym_f64] = ACTIONS(2918), - [anon_sym_bool] = ACTIONS(2918), - [anon_sym_str] = ACTIONS(2918), - [anon_sym_char] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_DOT_DOT] = ACTIONS(2916), - [anon_sym_COLON_COLON] = ACTIONS(2916), - [anon_sym_POUND] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2918), - [anon_sym_async] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_gen] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_impl] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_loop] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_mod] = ACTIONS(2918), - [anon_sym_pub] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_trait] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_extern] = ACTIONS(2918), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_move] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [sym_integer_literal] = ACTIONS(2916), - [aux_sym_string_literal_token1] = ACTIONS(2916), - [sym_char_literal] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2918), - [anon_sym_false] = ACTIONS(2918), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2918), - [sym_super] = ACTIONS(2918), - [sym_crate] = ACTIONS(2918), - [sym_metavariable] = ACTIONS(2916), - [sym__raw_string_literal_start] = ACTIONS(2916), - [sym_float_literal] = ACTIONS(2916), + [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(748)] = { - [sym_empty_statement] = STATE(1305), - [sym_macro_definition] = STATE(1305), - [sym_attribute_item] = STATE(1305), - [sym_inner_attribute_item] = STATE(1305), - [sym_mod_item] = STATE(1305), - [sym_foreign_mod_item] = STATE(1305), - [sym_struct_item] = STATE(1305), - [sym_union_item] = STATE(1305), - [sym_enum_item] = STATE(1305), - [sym_extern_crate_declaration] = STATE(1305), - [sym_const_item] = STATE(1305), - [sym_static_item] = STATE(1305), - [sym_type_item] = STATE(1305), - [sym_function_item] = STATE(1305), - [sym_function_signature_item] = STATE(1305), - [sym_function_modifiers] = STATE(3747), - [sym_impl_item] = STATE(1305), - [sym_trait_item] = STATE(1305), - [sym_associated_type] = STATE(1305), - [sym_let_declaration] = STATE(1305), - [sym_use_declaration] = STATE(1305), - [sym_extern_modifier] = STATE(2250), - [sym_visibility_modifier] = STATE(2009), - [sym_bracketed_type] = STATE(3696), - [sym_generic_type_with_turbofish] = STATE(3770), - [sym_macro_invocation] = STATE(1305), - [sym_scoped_identifier] = STATE(3191), [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2546), - [anon_sym_fn] = ACTIONS(2548), - [anon_sym_gen] = ACTIONS(2550), - [anon_sym_impl] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_mod] = ACTIONS(2556), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_struct] = ACTIONS(2560), - [anon_sym_trait] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2570), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2578), + [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(2906), + [sym__raw_string_literal_start] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), }, [STATE(749)] = { - [sym_attribute_item] = STATE(1140), - [sym_inner_attribute_item] = STATE(1140), - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_match_pattern] = STATE(3758), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2962), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [aux_sym_match_arm_repeat1] = STATE(1073), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [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(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_macro_rules_BANG] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_u8] = ACTIONS(2916), + [anon_sym_i8] = ACTIONS(2916), + [anon_sym_u16] = ACTIONS(2916), + [anon_sym_i16] = ACTIONS(2916), + [anon_sym_u32] = ACTIONS(2916), + [anon_sym_i32] = ACTIONS(2916), + [anon_sym_u64] = ACTIONS(2916), + [anon_sym_i64] = ACTIONS(2916), + [anon_sym_u128] = ACTIONS(2916), + [anon_sym_i128] = ACTIONS(2916), + [anon_sym_isize] = ACTIONS(2916), + [anon_sym_usize] = ACTIONS(2916), + [anon_sym_f32] = ACTIONS(2916), + [anon_sym_f64] = ACTIONS(2916), + [anon_sym_bool] = ACTIONS(2916), + [anon_sym_str] = ACTIONS(2916), + [anon_sym_char] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2916), + [anon_sym_async] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_fn] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_gen] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_impl] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_loop] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_mod] = ACTIONS(2916), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_trait] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_unsafe] = ACTIONS(2916), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_move] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [sym_integer_literal] = ACTIONS(2914), + [aux_sym_string_literal_token1] = ACTIONS(2914), + [sym_char_literal] = ACTIONS(2914), + [anon_sym_true] = ACTIONS(2916), + [anon_sym_false] = ACTIONS(2916), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2916), + [sym_super] = ACTIONS(2916), + [sym_crate] = ACTIONS(2916), + [sym_metavariable] = ACTIONS(2914), + [sym__raw_string_literal_start] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + }, + [STATE(751)] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_macro_rules_BANG] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_u8] = ACTIONS(2920), + [anon_sym_i8] = ACTIONS(2920), + [anon_sym_u16] = ACTIONS(2920), + [anon_sym_i16] = ACTIONS(2920), + [anon_sym_u32] = ACTIONS(2920), + [anon_sym_i32] = ACTIONS(2920), + [anon_sym_u64] = ACTIONS(2920), + [anon_sym_i64] = ACTIONS(2920), + [anon_sym_u128] = ACTIONS(2920), + [anon_sym_i128] = ACTIONS(2920), + [anon_sym_isize] = ACTIONS(2920), + [anon_sym_usize] = ACTIONS(2920), + [anon_sym_f32] = ACTIONS(2920), + [anon_sym_f64] = ACTIONS(2920), + [anon_sym_bool] = ACTIONS(2920), + [anon_sym_str] = ACTIONS(2920), + [anon_sym_char] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_fn] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_gen] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_impl] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_loop] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_mod] = ACTIONS(2920), + [anon_sym_pub] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_trait] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_unsafe] = ACTIONS(2920), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_move] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [sym_integer_literal] = ACTIONS(2918), + [aux_sym_string_literal_token1] = ACTIONS(2918), + [sym_char_literal] = ACTIONS(2918), + [anon_sym_true] = ACTIONS(2920), + [anon_sym_false] = ACTIONS(2920), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2920), + [sym_super] = ACTIONS(2920), + [sym_crate] = ACTIONS(2920), + [sym_metavariable] = ACTIONS(2918), + [sym__raw_string_literal_start] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + }, + [STATE(752)] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2922), [sym_identifier] = ACTIONS(2924), [anon_sym_SEMI] = ACTIONS(2922), @@ -92221,9 +92635,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(753)] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2926), [sym_identifier] = ACTIONS(2928), [anon_sym_SEMI] = ACTIONS(2926), @@ -92302,9 +92716,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(754)] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2930), [sym_identifier] = ACTIONS(2932), [anon_sym_SEMI] = ACTIONS(2930), @@ -92383,9 +92797,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(755)] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_SEMI] = ACTIONS(2934), @@ -92464,9 +92878,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(756)] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2938), [sym_identifier] = ACTIONS(2940), [anon_sym_SEMI] = ACTIONS(2938), @@ -92545,9 +92959,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(757)] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2942), [sym_identifier] = ACTIONS(2944), [anon_sym_SEMI] = ACTIONS(2942), @@ -92626,9 +93040,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(758)] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2946), [sym_identifier] = ACTIONS(2948), [anon_sym_SEMI] = ACTIONS(2946), @@ -92707,9 +93121,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(759)] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2950), [sym_identifier] = ACTIONS(2952), [anon_sym_SEMI] = ACTIONS(2950), @@ -92788,9 +93202,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(760)] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2954), [sym_identifier] = ACTIONS(2956), [anon_sym_SEMI] = ACTIONS(2954), @@ -92869,9 +93283,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(761)] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2958), [sym_identifier] = ACTIONS(2960), [anon_sym_SEMI] = ACTIONS(2958), @@ -92950,9 +93364,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(762)] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2962), [sym_identifier] = ACTIONS(2964), [anon_sym_SEMI] = ACTIONS(2962), @@ -93031,9 +93445,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(763)] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2966), [sym_identifier] = ACTIONS(2968), [anon_sym_SEMI] = ACTIONS(2966), @@ -93112,9 +93526,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(764)] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2970), [sym_identifier] = ACTIONS(2972), [anon_sym_SEMI] = ACTIONS(2970), @@ -93193,9 +93607,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(765)] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(2974), [sym_identifier] = ACTIONS(2976), [anon_sym_SEMI] = ACTIONS(2974), @@ -93274,9 +93688,9 @@ 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(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), @@ -93355,9 +93769,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), @@ -93436,9 +93850,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), @@ -93517,9 +93931,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), @@ -93598,9 +94012,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), @@ -93679,9 +94093,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), @@ -93760,9 +94174,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), @@ -93841,9 +94255,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), @@ -93922,9 +94336,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), @@ -94003,9 +94417,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), @@ -94084,9 +94498,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), @@ -94165,9 +94579,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), @@ -94246,9 +94660,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), @@ -94327,9 +94741,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), @@ -94408,9 +94822,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), @@ -94489,9 +94903,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), @@ -94570,9 +94984,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), @@ -94651,9 +95065,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), @@ -94732,20285 +95146,20675 @@ 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(1120), - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_const_parameter] = STATE(3009), - [sym_type_parameter] = STATE(3009), - [sym_lifetime_parameter] = STATE(3009), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2939), - [sym_bracketed_type] = STATE(3722), - [sym_qualified_type] = STATE(3575), - [sym_lifetime] = STATE(2542), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(2132), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3050), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(3058), - }, - [STATE(783)] = { - [sym_attribute_item] = STATE(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(885), - [sym__type] = STATE(2781), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(783), - [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(791), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), - }, [STATE(784)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym_closure_expression] = STATE(3391), - [sym_closure_parameters] = STATE(215), - [sym__pattern] = STATE(2947), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(989), - [sym__type] = STATE(3042), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(798), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [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_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(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(989), - [sym__type] = STATE(3042), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(798), - [aux_sym_function_modifiers_repeat1] = STATE(2291), + [ts_builtin_sym_end] = ACTIONS(3058), [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [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(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(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(989), - [sym__type] = STATE(3042), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(798), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [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(3062), + [sym__raw_string_literal_start] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), }, [STATE(788)] = { - [sym_attribute_item] = STATE(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(989), - [sym__type] = STATE(3042), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_const_parameter] = STATE(2971), + [sym_type_parameter] = STATE(2971), + [sym_lifetime_parameter] = STATE(2971), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2926), + [sym_bracketed_type] = STATE(3752), + [sym_qualified_type] = STATE(3704), + [sym_lifetime] = STATE(2612), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(798), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(2164), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3066), + [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(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(3074), }, [STATE(789)] = { - [sym_attribute_item] = STATE(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(989), - [sym__type] = STATE(3042), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(900), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(798), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(790)] = { - [sym_attribute_item] = STATE(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(989), - [sym__type] = STATE(3042), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(798), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(791)] = { - [sym_attribute_item] = STATE(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(2839), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(1077), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(792)] = { - [sym_attribute_item] = STATE(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(989), - [sym__type] = STATE(3042), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [aux_sym_enum_variant_list_repeat1] = STATE(798), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(793)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2627), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(794)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2826), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(795)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2695), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [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(3094), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2830), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2708), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3102), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(797)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2747), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(904), + [sym__type] = STATE(3063), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_enum_variant_list_repeat1] = STATE(1093), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(798)] = { - [sym_attribute_item] = STATE(1120), - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym_visibility_modifier] = STATE(889), - [sym__type] = STATE(2851), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2707), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [aux_sym_enum_variant_list_repeat1] = STATE(1077), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3072), - [sym_metavariable] = ACTIONS(1633), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2829), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2776), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2626), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(802)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_attribute_item] = STATE(1254), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym_visibility_modifier] = STATE(1012), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [aux_sym_enum_variant_list_repeat1] = STATE(1093), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(1647), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2828), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2671), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3118), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3122), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(806)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3124), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3126), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(808)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(809)] = { - [sym_parameter] = STATE(2981), - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2518), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(3126), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3128), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(810)] = { - [sym_parameter] = STATE(3275), - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3064), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_parameter] = STATE(3217), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3053), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(3126), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3128), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3134), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(811)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3136), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(812)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3132), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2795), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3134), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3136), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3140), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(814)] = { - [sym_parameter] = STATE(2981), - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2792), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2674), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(3126), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3128), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(815)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_parameter] = STATE(3002), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2576), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3134), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3442), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3148), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2971), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3150), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(818)] = { - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(3000), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_parameter] = STATE(3002), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2687), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3134), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2202), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3152), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2974), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [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_RBRACK] = ACTIONS(3154), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(3107), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2194), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(822)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3478), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2210), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2589), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3324), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3260), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2169), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2608), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2817), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3490), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3142), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2868), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3430), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(2992), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2549), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(3106), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2213), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2550), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2603), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3327), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2214), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3660), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3393), - [sym_macro_invocation] = STATE(2944), - [sym_scoped_identifier] = STATE(2238), - [sym_scoped_type_identifier] = STATE(2959), - [sym_const_block] = STATE(2944), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2944), - [sym_tuple_pattern] = STATE(2944), - [sym_slice_pattern] = STATE(2944), - [sym_tuple_struct_pattern] = STATE(2944), - [sym_struct_pattern] = STATE(2944), - [sym_remaining_field_pattern] = STATE(2944), - [sym_mut_pattern] = STATE(2944), - [sym_range_pattern] = STATE(2944), - [sym_ref_pattern] = STATE(2944), - [sym_captured_pattern] = STATE(2944), - [sym_reference_pattern] = STATE(2944), - [sym_or_pattern] = STATE(2944), - [sym__literal_pattern] = STATE(2393), - [sym_negative_literal] = STATE(2385), - [sym_string_literal] = STATE(2385), - [sym_raw_string_literal] = STATE(2385), - [sym_boolean_literal] = STATE(2385), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3068), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [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(3160), + [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(833)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3087), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3072), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(834)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2630), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2751), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2906), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3183), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(836)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(3164), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2185), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3423), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(3144), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2539), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2656), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(3146), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3177), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2182), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2503), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3238), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(2991), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(842)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2578), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3101), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(3148), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3418), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3000), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3434), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3135), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3439), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3014), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(846)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3158), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3071), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(3441), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3479), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3475), - [sym_generic_type] = STATE(3483), - [sym_generic_type_with_turbofish] = STATE(3332), - [sym_macro_invocation] = STATE(2186), - [sym_scoped_identifier] = STATE(2017), - [sym_scoped_type_identifier] = STATE(3028), - [sym_const_block] = STATE(2186), - [sym__pattern] = STATE(2170), - [sym_generic_pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(2186), - [sym_slice_pattern] = STATE(2186), - [sym_tuple_struct_pattern] = STATE(2186), - [sym_struct_pattern] = STATE(2186), - [sym_remaining_field_pattern] = STATE(2186), - [sym_mut_pattern] = STATE(2186), - [sym_range_pattern] = STATE(2186), - [sym_ref_pattern] = STATE(2186), - [sym_captured_pattern] = STATE(2186), - [sym_reference_pattern] = STATE(2186), - [sym_or_pattern] = STATE(2186), - [sym__literal_pattern] = STATE(2097), - [sym_negative_literal] = STATE(2093), - [sym_string_literal] = STATE(2093), - [sym_raw_string_literal] = STATE(2093), - [sym_boolean_literal] = STATE(2093), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_macro_invocation] = STATE(2883), + [sym_scoped_identifier] = STATE(2241), + [sym_scoped_type_identifier] = STATE(3110), + [sym_const_block] = STATE(2883), + [sym__pattern] = STATE(3096), + [sym_generic_pattern] = STATE(2883), + [sym_tuple_pattern] = STATE(2883), + [sym_slice_pattern] = STATE(2883), + [sym_tuple_struct_pattern] = STATE(2883), + [sym_struct_pattern] = STATE(2883), + [sym_remaining_field_pattern] = STATE(2883), + [sym_mut_pattern] = STATE(2883), + [sym_range_pattern] = STATE(2883), + [sym_ref_pattern] = STATE(2883), + [sym_captured_pattern] = STATE(2883), + [sym_reference_pattern] = STATE(2883), + [sym_or_pattern] = STATE(2883), + [sym__literal_pattern] = STATE(2449), + [sym_negative_literal] = STATE(2408), + [sym_string_literal] = STATE(2408), + [sym_raw_string_literal] = STATE(2408), + [sym_boolean_literal] = STATE(2408), [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(1225), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_gen] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1275), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1273), + [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(849)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3449), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(3152), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3154), - [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(850)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3471), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3160), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(851)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3330), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3476), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3162), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(852)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1822), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(3477), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [sym_mutable_specifier] = ACTIONS(3194), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(853)] = { - [sym_function_modifiers] = STATE(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1471), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_bracketed_type] = STATE(3674), + [sym_generic_type] = STATE(3711), + [sym_generic_type_with_turbofish] = STATE(3231), + [sym_macro_invocation] = STATE(2221), + [sym_scoped_identifier] = STATE(2033), + [sym_scoped_type_identifier] = STATE(3055), + [sym_const_block] = STATE(2221), + [sym__pattern] = STATE(2230), + [sym_generic_pattern] = STATE(2221), + [sym_tuple_pattern] = STATE(2221), + [sym_slice_pattern] = STATE(2221), + [sym_tuple_struct_pattern] = STATE(2221), + [sym_struct_pattern] = STATE(2221), + [sym_remaining_field_pattern] = STATE(2221), + [sym_mut_pattern] = STATE(2221), + [sym_range_pattern] = STATE(2221), + [sym_ref_pattern] = STATE(2221), + [sym_captured_pattern] = STATE(2221), + [sym_reference_pattern] = STATE(2221), + [sym_or_pattern] = STATE(2221), + [sym__literal_pattern] = STATE(2103), + [sym_negative_literal] = STATE(2112), + [sym_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [sym_mutable_specifier] = ACTIONS(3230), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [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(1117), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_gen] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_ref] = ACTIONS(1159), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1167), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1169), + [anon_sym_false] = ACTIONS(1169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1177), + [sym_float_literal] = ACTIONS(1165), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [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(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(3168), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3170), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2682), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3776), - [sym_higher_ranked_trait_bound] = STATE(2221), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2222), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2222), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3359), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3210), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3212), + [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(857)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2893), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2893), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3210), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2893), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2035), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2732), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3250), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_higher_ranked_trait_bound] = STATE(2285), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2286), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2286), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1508), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3258), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2893), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_higher_ranked_trait_bound] = STATE(2285), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2287), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(2061), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(1011), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2486), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2280), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2655), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2732), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_type_parameters] = STATE(987), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2469), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2252), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2724), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_higher_ranked_trait_bound] = STATE(2263), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2264), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2264), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2893), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_type_parameters] = STATE(999), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2398), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2474), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2258), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_type_parameters] = STATE(917), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2459), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2465), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2217), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2926), + [sym_bracketed_type] = STATE(3752), + [sym_qualified_type] = STATE(3704), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(871)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_higher_ranked_trait_bound] = STATE(2301), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2302), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3241), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(851), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3274), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1801), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(852), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [sym_mutable_specifier] = ACTIONS(3276), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(874)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2682), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3280), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2035), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [sym_mutable_specifier] = ACTIONS(3278), - [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(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_higher_ranked_trait_bound] = STATE(2301), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2303), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2088), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [sym_mutable_specifier] = ACTIONS(3280), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2939), - [sym_bracketed_type] = STATE(3722), - [sym_qualified_type] = STATE(3575), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(903), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2499), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2506), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2252), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3286), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_type_parameters] = STATE(974), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2409), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2450), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2232), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(879)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2893), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3467), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(856), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3290), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2724), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1818), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(857), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3242), + [sym_mutable_specifier] = ACTIONS(3292), + [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(881)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3030), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [sym_mutable_specifier] = ACTIONS(3294), + [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(3776), - [sym_removed_trait_bound] = STATE(2062), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3750), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2062), - [sym_tuple_type] = STATE(2062), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2029), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2062), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2003), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1641), + [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(883)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3093), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2566), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(998), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2423), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2477), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2277), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3300), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2839), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(959), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2434), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2439), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2270), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3304), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2060), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3018), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2553), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3037), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2588), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1461), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1462), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1473), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1502), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2458), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(892)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3024), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(893)] = { - [sym_function_modifiers] = STATE(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1503), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1499), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2069), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2815), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2062), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3603), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2062), - [sym_tuple_type] = STATE(2062), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2029), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2062), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2237), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2640), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [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(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(896)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3044), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1504), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2476), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(898)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1821), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2479), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1822), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3109), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1760), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(1760), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(1760), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(3300), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1438), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2487), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(902)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2840), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2668), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(903)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2655), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2505), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2403), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2267), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3308), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(904)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1827), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(905)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1766), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1828), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2760), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(907)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1772), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(908)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1776), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(909)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(910)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1782), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1786), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(1786), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(1786), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3310), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(1157), + [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(911)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1783), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2706), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1784), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2710), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1842), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(914)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2061), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(2061), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(915)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3420), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1843), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(916)] = { - [sym_function_modifiers] = STATE(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1789), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(917)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2456), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2457), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2264), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1797), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(918)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2938), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1804), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(919)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2048), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1805), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(920)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2050), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3603), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2050), - [sym_tuple_type] = STATE(2050), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2050), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2253), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [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(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(921)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2683), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2921), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(922)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2057), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1809), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2038), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2312), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(924)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2039), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(925)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2041), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2755), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(926)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2989), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3314), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2271), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2443), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2081), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(931)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2775), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(932)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2988), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2078), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(933)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2449), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(934)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2452), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2061), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3531), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2061), + [sym_tuple_type] = STATE(2061), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2052), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2061), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2234), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2758), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2088), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2088), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2088), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(937)] = { - [sym_function_modifiers] = STATE(3748), - [sym_removed_trait_bound] = STATE(1458), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3579), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1458), - [sym_tuple_type] = STATE(1458), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(1223), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1458), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3396), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3396), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3312), - [anon_sym_i8] = ACTIONS(3312), - [anon_sym_u16] = ACTIONS(3312), - [anon_sym_i16] = ACTIONS(3312), - [anon_sym_u32] = ACTIONS(3312), - [anon_sym_i32] = ACTIONS(3312), - [anon_sym_u64] = ACTIONS(3312), - [anon_sym_i64] = ACTIONS(3312), - [anon_sym_u128] = ACTIONS(3312), - [anon_sym_i128] = ACTIONS(3312), - [anon_sym_isize] = ACTIONS(3312), - [anon_sym_usize] = ACTIONS(3312), - [anon_sym_f32] = ACTIONS(3312), - [anon_sym_f64] = ACTIONS(3312), - [anon_sym_bool] = ACTIONS(3312), - [anon_sym_str] = ACTIONS(3312), - [anon_sym_char] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_gen] = ACTIONS(3318), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3320), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1728), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2813), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(939)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3329), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3330), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(941)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2724), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2525), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(2061), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(2061), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2945), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3049), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2801), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3063), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2308), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3047), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(948)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2441), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3368), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2071), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3531), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2071), + [sym_tuple_type] = STATE(2071), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2071), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1481), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3579), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1481), - [sym_tuple_type] = STATE(1481), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(1312), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1481), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3396), - [sym_scoped_type_identifier] = STATE(1089), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2084), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3312), - [anon_sym_i8] = ACTIONS(3312), - [anon_sym_u16] = ACTIONS(3312), - [anon_sym_i16] = ACTIONS(3312), - [anon_sym_u32] = ACTIONS(3312), - [anon_sym_i32] = ACTIONS(3312), - [anon_sym_u64] = ACTIONS(3312), - [anon_sym_i64] = ACTIONS(3312), - [anon_sym_u128] = ACTIONS(3312), - [anon_sym_i128] = ACTIONS(3312), - [anon_sym_isize] = ACTIONS(3312), - [anon_sym_usize] = ACTIONS(3312), - [anon_sym_f32] = ACTIONS(3312), - [anon_sym_f64] = ACTIONS(3312), - [anon_sym_bool] = ACTIONS(3312), - [anon_sym_str] = ACTIONS(3312), - [anon_sym_char] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3318), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3320), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(951)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3274), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(952)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2820), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(953)] = { - [sym_function_modifiers] = STATE(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1470), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1505), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2443), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2463), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1515), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3522), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1515), + [sym_tuple_type] = STATE(1515), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1296), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1515), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3420), + [sym_scoped_type_identifier] = STATE(1091), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3326), + [anon_sym_i8] = ACTIONS(3326), + [anon_sym_u16] = ACTIONS(3326), + [anon_sym_i16] = ACTIONS(3326), + [anon_sym_u32] = ACTIONS(3326), + [anon_sym_i32] = ACTIONS(3326), + [anon_sym_u64] = ACTIONS(3326), + [anon_sym_i64] = ACTIONS(3326), + [anon_sym_u128] = ACTIONS(3326), + [anon_sym_i128] = ACTIONS(3326), + [anon_sym_isize] = ACTIONS(3326), + [anon_sym_usize] = ACTIONS(3326), + [anon_sym_f32] = ACTIONS(3326), + [anon_sym_f64] = ACTIONS(3326), + [anon_sym_bool] = ACTIONS(3326), + [anon_sym_str] = ACTIONS(3326), + [anon_sym_char] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_gen] = ACTIONS(3332), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3334), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2466), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1471), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1871), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(958)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2800), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2520), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2468), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2446), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2467), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2282), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3359), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1473), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(1473), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(1473), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2088), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(2088), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2088), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2442), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2305), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2950), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2309), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2756), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2629), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2981), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1722), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(1722), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1722), - [sym_tuple_type] = STATE(1722), - [sym_unit_type] = STATE(1722), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1722), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(1722), - [sym_pointer_type] = STATE(1722), - [sym_never_type] = STATE(1722), - [sym_abstract_type] = STATE(1722), - [sym_dynamic_type] = STATE(1722), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(3405), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2910), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3176), - [anon_sym_i8] = ACTIONS(3176), - [anon_sym_u16] = ACTIONS(3176), - [anon_sym_i16] = ACTIONS(3176), - [anon_sym_u32] = ACTIONS(3176), - [anon_sym_i32] = ACTIONS(3176), - [anon_sym_u64] = ACTIONS(3176), - [anon_sym_i64] = ACTIONS(3176), - [anon_sym_u128] = ACTIONS(3176), - [anon_sym_i128] = ACTIONS(3176), - [anon_sym_isize] = ACTIONS(3176), - [anon_sym_usize] = ACTIONS(3176), - [anon_sym_f32] = ACTIONS(3176), - [anon_sym_f64] = ACTIONS(3176), - [anon_sym_bool] = ACTIONS(3176), - [anon_sym_str] = ACTIONS(3176), - [anon_sym_char] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3188), - [anon_sym_impl] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3188), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3198), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1737), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3502), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1737), - [sym_tuple_type] = STATE(1737), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(1643), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1737), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3408), - [sym_scoped_type_identifier] = STATE(1592), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3202), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3332), - [anon_sym_i8] = ACTIONS(3332), - [anon_sym_u16] = ACTIONS(3332), - [anon_sym_i16] = ACTIONS(3332), - [anon_sym_u32] = ACTIONS(3332), - [anon_sym_i32] = ACTIONS(3332), - [anon_sym_u64] = ACTIONS(3332), - [anon_sym_i64] = ACTIONS(3332), - [anon_sym_u128] = ACTIONS(3332), - [anon_sym_i128] = ACTIONS(3332), - [anon_sym_isize] = ACTIONS(3332), - [anon_sym_usize] = ACTIONS(3332), - [anon_sym_f32] = ACTIONS(3332), - [anon_sym_f64] = ACTIONS(3332), - [anon_sym_bool] = ACTIONS(3332), - [anon_sym_str] = ACTIONS(3332), - [anon_sym_char] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_gen] = ACTIONS(3338), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3340), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(969)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2682), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1511), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3522), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1511), + [sym_tuple_type] = STATE(1511), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1150), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1511), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3420), + [sym_scoped_type_identifier] = STATE(1089), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3326), + [anon_sym_i8] = ACTIONS(3326), + [anon_sym_u16] = ACTIONS(3326), + [anon_sym_i16] = ACTIONS(3326), + [anon_sym_u32] = ACTIONS(3326), + [anon_sym_i32] = ACTIONS(3326), + [anon_sym_u64] = ACTIONS(3326), + [anon_sym_i64] = ACTIONS(3326), + [anon_sym_u128] = ACTIONS(3326), + [anon_sym_i128] = ACTIONS(3326), + [anon_sym_isize] = ACTIONS(3326), + [anon_sym_usize] = ACTIONS(3326), + [anon_sym_f32] = ACTIONS(3326), + [anon_sym_f64] = ACTIONS(3326), + [anon_sym_bool] = ACTIONS(3326), + [anon_sym_str] = ACTIONS(3326), + [anon_sym_char] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3332), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3334), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2586), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3405), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(971)] = { - [sym_function_modifiers] = STATE(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1512), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2648), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3606), - [sym_removed_trait_bound] = STATE(1767), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3502), - [sym_bracketed_type] = STATE(3666), - [sym_lifetime] = STATE(3502), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(1767), - [sym_tuple_type] = STATE(1767), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3657), - [sym_bounded_type] = STATE(1767), - [sym_use_bounds] = STATE(3502), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3408), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2455), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(3174), - [anon_sym_u8] = ACTIONS(3332), - [anon_sym_i8] = ACTIONS(3332), - [anon_sym_u16] = ACTIONS(3332), - [anon_sym_i16] = ACTIONS(3332), - [anon_sym_u32] = ACTIONS(3332), - [anon_sym_i32] = ACTIONS(3332), - [anon_sym_u64] = ACTIONS(3332), - [anon_sym_i64] = ACTIONS(3332), - [anon_sym_u128] = ACTIONS(3332), - [anon_sym_i128] = ACTIONS(3332), - [anon_sym_isize] = ACTIONS(3332), - [anon_sym_usize] = ACTIONS(3332), - [anon_sym_f32] = ACTIONS(3332), - [anon_sym_f64] = ACTIONS(3332), - [anon_sym_bool] = ACTIONS(3332), - [anon_sym_str] = ACTIONS(3332), - [anon_sym_char] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_fn] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3338), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_crate] = ACTIONS(3196), - [sym_metavariable] = ACTIONS(3340), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2507), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2470), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2471), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2257), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2502), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2653), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2335), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2893), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2060), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1486), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3348), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1479), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2455), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2508), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1480), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1529), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2447), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1484), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1745), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1756), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(1745), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1745), + [sym_tuple_type] = STATE(1745), + [sym_unit_type] = STATE(1745), + [sym_generic_type] = STATE(1692), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1745), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(1745), + [sym_pointer_type] = STATE(1745), + [sym_never_type] = STATE(1745), + [sym_abstract_type] = STATE(1745), + [sym_dynamic_type] = STATE(1745), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(3433), + [sym_scoped_type_identifier] = STATE(1614), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [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(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(984)] = { - [sym_function_modifiers] = STATE(3748), - [sym_removed_trait_bound] = STATE(1447), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(1485), - [sym_bracketed_type] = STATE(3649), - [sym_lifetime] = STATE(3579), - [sym_array_type] = STATE(1447), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1447), - [sym_tuple_type] = STATE(1447), - [sym_unit_type] = STATE(1447), - [sym_generic_type] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(3637), - [sym_bounded_type] = STATE(1447), - [sym_use_bounds] = STATE(3579), - [sym_reference_type] = STATE(1447), - [sym_pointer_type] = STATE(1447), - [sym_never_type] = STATE(1447), - [sym_abstract_type] = STATE(1447), - [sym_dynamic_type] = STATE(1447), - [sym_macro_invocation] = STATE(1447), - [sym_scoped_identifier] = STATE(3319), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3813), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1668), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1759), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3440), + [sym_scoped_type_identifier] = STATE(1609), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_STAR] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3210), - [anon_sym_u8] = ACTIONS(3212), - [anon_sym_i8] = ACTIONS(3212), - [anon_sym_u16] = ACTIONS(3212), - [anon_sym_i16] = ACTIONS(3212), - [anon_sym_u32] = ACTIONS(3212), - [anon_sym_i32] = ACTIONS(3212), - [anon_sym_u64] = ACTIONS(3212), - [anon_sym_i64] = ACTIONS(3212), - [anon_sym_u128] = ACTIONS(3212), - [anon_sym_i128] = ACTIONS(3212), - [anon_sym_isize] = ACTIONS(3212), - [anon_sym_usize] = ACTIONS(3212), - [anon_sym_f32] = ACTIONS(3212), - [anon_sym_f64] = ACTIONS(3212), - [anon_sym_bool] = ACTIONS(3212), - [anon_sym_str] = ACTIONS(3212), - [anon_sym_char] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_fn] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(3224), - [anon_sym_impl] = ACTIONS(3226), - [anon_sym_union] = ACTIONS(3224), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3346), + [anon_sym_i8] = ACTIONS(3346), + [anon_sym_u16] = ACTIONS(3346), + [anon_sym_i16] = ACTIONS(3346), + [anon_sym_u32] = ACTIONS(3346), + [anon_sym_i32] = ACTIONS(3346), + [anon_sym_u64] = ACTIONS(3346), + [anon_sym_i64] = ACTIONS(3346), + [anon_sym_u128] = ACTIONS(3346), + [anon_sym_i128] = ACTIONS(3346), + [anon_sym_isize] = ACTIONS(3346), + [anon_sym_usize] = ACTIONS(3346), + [anon_sym_f32] = ACTIONS(3346), + [anon_sym_f64] = ACTIONS(3346), + [anon_sym_bool] = ACTIONS(3346), + [anon_sym_str] = ACTIONS(3346), + [anon_sym_char] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_gen] = ACTIONS(3352), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3354), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3650), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2049), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3603), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1615), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3603), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2220), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(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(1227), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2886), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2732), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2472), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2256), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1436), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2851), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3641), + [sym_removed_trait_bound] = STATE(1792), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3813), + [sym_bracketed_type] = STATE(3701), + [sym_lifetime] = STATE(3813), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1625), + [sym_function_type] = STATE(1792), + [sym_tuple_type] = STATE(1792), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(1656), + [sym_generic_type_with_turbofish] = STATE(3692), + [sym_bounded_type] = STATE(1792), + [sym_use_bounds] = STATE(3813), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3440), + [sym_scoped_type_identifier] = STATE(1615), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3346), + [anon_sym_i8] = ACTIONS(3346), + [anon_sym_u16] = ACTIONS(3346), + [anon_sym_i16] = ACTIONS(3346), + [anon_sym_u32] = ACTIONS(3346), + [anon_sym_i32] = ACTIONS(3346), + [anon_sym_u64] = ACTIONS(3346), + [anon_sym_i64] = ACTIONS(3346), + [anon_sym_u128] = ACTIONS(3346), + [anon_sym_i128] = ACTIONS(3346), + [anon_sym_isize] = ACTIONS(3346), + [anon_sym_usize] = ACTIONS(3346), + [anon_sym_f32] = ACTIONS(3346), + [anon_sym_f64] = ACTIONS(3346), + [anon_sym_bool] = ACTIONS(3346), + [anon_sym_str] = ACTIONS(3346), + [anon_sym_char] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3352), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3354), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2069), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1450), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(1450), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(1450), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3144), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3073), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2403), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1554), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2404), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1457), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1538), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2918), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1523), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2573), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3150), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2593), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2440), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2483), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2278), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3364), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2405), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2475), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2261), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1456), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(3685), + [sym_lifetime] = STATE(3522), + [sym_array_type] = STATE(1456), + [sym_for_lifetimes] = STATE(1647), + [sym_function_type] = STATE(1456), + [sym_tuple_type] = STATE(1456), + [sym_unit_type] = STATE(1456), + [sym_generic_type] = STATE(1265), + [sym_generic_type_with_turbofish] = STATE(3673), + [sym_bounded_type] = STATE(1456), + [sym_use_bounds] = STATE(3522), + [sym_reference_type] = STATE(1456), + [sym_pointer_type] = STATE(1456), + [sym_never_type] = STATE(1456), + [sym_abstract_type] = STATE(1456), + [sym_dynamic_type] = STATE(1456), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3339), + [sym_scoped_type_identifier] = STATE(1084), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2060), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2438), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2048), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2078), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2050), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3750), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2050), - [sym_tuple_type] = STATE(2050), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2050), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2004), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2057), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2887), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2282), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2430), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2897), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2412), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2741), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2432), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2233), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(3368), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1012)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2612), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2802), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2965), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2525), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2615), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2071), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3775), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2071), + [sym_tuple_type] = STATE(2071), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2071), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2021), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2616), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2084), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3015), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2620), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2038), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2593), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2039), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2041), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2478), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2444), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2480), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2273), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2484), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1024)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2418), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2445), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2934), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2861), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2831), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2638), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2832), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2420), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2942), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2421), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2840), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2422), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2423), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1033)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2277), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2643), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2286), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1035)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2644), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2412), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1036)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2413), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2425), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2426), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2964), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2290), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2927), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2654), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2417), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2292), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1043)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2293), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1044)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2289), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3035), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2837), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1046)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(3151), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2844), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1047)] = { - [sym_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2639), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2081), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2289), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2428), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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_function_modifiers] = STATE(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2049), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2429), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3776), - [sym_removed_trait_bound] = STATE(2042), - [sym_extern_modifier] = STATE(2467), - [sym__type] = STATE(2266), - [sym_bracketed_type] = STATE(3722), - [sym_lifetime] = STATE(3750), - [sym_array_type] = STATE(2042), - [sym_for_lifetimes] = STATE(1619), - [sym_function_type] = STATE(2042), - [sym_tuple_type] = STATE(2042), - [sym_unit_type] = STATE(2042), - [sym_generic_type] = STATE(2016), - [sym_generic_type_with_turbofish] = STATE(3541), - [sym_bounded_type] = STATE(2042), - [sym_use_bounds] = STATE(3750), - [sym_reference_type] = STATE(2042), - [sym_pointer_type] = STATE(2042), - [sym_never_type] = STATE(2042), - [sym_abstract_type] = STATE(2042), - [sym_dynamic_type] = STATE(2042), - [sym_macro_invocation] = STATE(2042), - [sym_scoped_identifier] = STATE(3201), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2293), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [aux_sym_function_modifiers_repeat1] = STATE(2291), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1249), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_dyn] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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_attribute_item] = STATE(1052), + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2988), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [aux_sym_enum_variant_list_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [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(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2791), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [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(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1053)] = { + [sym_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2294), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [sym_identifier] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2272), - [anon_sym_u8] = ACTIONS(2274), - [anon_sym_i8] = ACTIONS(2274), - [anon_sym_u16] = ACTIONS(2274), - [anon_sym_i16] = ACTIONS(2274), - [anon_sym_u32] = ACTIONS(2274), - [anon_sym_i32] = ACTIONS(2274), - [anon_sym_u64] = ACTIONS(2274), - [anon_sym_i64] = ACTIONS(2274), - [anon_sym_u128] = ACTIONS(2274), - [anon_sym_i128] = ACTIONS(2274), - [anon_sym_isize] = ACTIONS(2274), - [anon_sym_usize] = ACTIONS(2274), - [anon_sym_f32] = ACTIONS(2274), - [anon_sym_f64] = ACTIONS(2274), - [anon_sym_bool] = ACTIONS(2274), - [anon_sym_str] = ACTIONS(2274), - [anon_sym_char] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_gen] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_loop] = ACTIONS(2274), - [anon_sym_match] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_union] = ACTIONS(2274), - [anon_sym_unsafe] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_move] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [sym_integer_literal] = ACTIONS(2272), - [aux_sym_string_literal_token1] = ACTIONS(2272), - [sym_char_literal] = ACTIONS(2272), - [anon_sym_true] = ACTIONS(2274), - [anon_sym_false] = ACTIONS(2274), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [sym_identifier] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_u8] = ACTIONS(1589), - [anon_sym_i8] = ACTIONS(1589), - [anon_sym_u16] = ACTIONS(1589), - [anon_sym_i16] = ACTIONS(1589), - [anon_sym_u32] = ACTIONS(1589), - [anon_sym_i32] = ACTIONS(1589), - [anon_sym_u64] = ACTIONS(1589), - [anon_sym_i64] = ACTIONS(1589), - [anon_sym_u128] = ACTIONS(1589), - [anon_sym_i128] = ACTIONS(1589), - [anon_sym_isize] = ACTIONS(1589), - [anon_sym_usize] = ACTIONS(1589), - [anon_sym_f32] = ACTIONS(1589), - [anon_sym_f64] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_str] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym__] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1591), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_DASH_GT] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_async] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_gen] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_unsafe] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_yield] = ACTIONS(1589), - [anon_sym_move] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1591), - [aux_sym_string_literal_token1] = ACTIONS(1591), - [sym_char_literal] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(3812), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2029), [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [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(2317), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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_function_modifiers] = STATE(3812), + [sym_removed_trait_bound] = STATE(2061), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3775), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3775), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1652), + [sym_function_type] = STATE(2061), + [sym_tuple_type] = STATE(2061), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2052), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2061), + [sym_use_bounds] = STATE(3775), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(1056), + [sym_block_comment] = STATE(1056), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [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(1119), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_dyn] = ACTIONS(1161), + [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(1057)] = { + [sym_function_modifiers] = STATE(3583), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2461), + [sym__type] = STATE(3358), + [sym_bracketed_type] = STATE(3752), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3736), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(3531), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3461), + [sym_scoped_type_identifier] = STATE(2255), + [sym_line_comment] = STATE(1057), + [sym_block_comment] = STATE(1057), + [aux_sym_function_modifiers_repeat1] = STATE(2317), + [sym_identifier] = ACTIONS(3208), + [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(1119), + [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(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_use] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1157), + [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(1058)] = { + [sym_attribute_item] = STATE(1059), + [sym_line_comment] = STATE(1058), + [sym_block_comment] = STATE(1058), + [aux_sym_enum_variant_list_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(763), + [anon_sym_RBRACK] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(763), + [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(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_DOT_DOT] = ACTIONS(763), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_COLON_COLON] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(789), + [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(763), + [aux_sym_string_literal_token1] = ACTIONS(763), + [sym_char_literal] = ACTIONS(763), + [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(763), + [sym__raw_string_literal_start] = ACTIONS(763), + [sym_float_literal] = ACTIONS(763), + }, + [STATE(1059)] = { + [sym_line_comment] = STATE(1059), + [sym_block_comment] = STATE(1059), + [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(1060)] = { + [sym_line_comment] = STATE(1060), + [sym_block_comment] = STATE(1060), + [sym_identifier] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_RBRACK] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_u8] = ACTIONS(2380), + [anon_sym_i8] = ACTIONS(2380), + [anon_sym_u16] = ACTIONS(2380), + [anon_sym_i16] = ACTIONS(2380), + [anon_sym_u32] = ACTIONS(2380), + [anon_sym_i32] = ACTIONS(2380), + [anon_sym_u64] = ACTIONS(2380), + [anon_sym_i64] = ACTIONS(2380), + [anon_sym_u128] = ACTIONS(2380), + [anon_sym_i128] = ACTIONS(2380), + [anon_sym_isize] = ACTIONS(2380), + [anon_sym_usize] = ACTIONS(2380), + [anon_sym_f32] = ACTIONS(2380), + [anon_sym_f64] = ACTIONS(2380), + [anon_sym_bool] = ACTIONS(2380), + [anon_sym_str] = ACTIONS(2380), + [anon_sym_char] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_COLON_COLON] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_gen] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_loop] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_union] = ACTIONS(2380), + [anon_sym_unsafe] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_move] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [sym_integer_literal] = ACTIONS(2378), + [aux_sym_string_literal_token1] = ACTIONS(2378), + [sym_char_literal] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_crate] = ACTIONS(2380), + [sym_metavariable] = ACTIONS(2378), + [sym__raw_string_literal_start] = ACTIONS(2378), + [sym_float_literal] = ACTIONS(2378), + }, + [STATE(1061)] = { + [sym_line_comment] = STATE(1061), + [sym_block_comment] = STATE(1061), + [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(1062)] = { + [sym_line_comment] = STATE(1062), + [sym_block_comment] = STATE(1062), + [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), }, }; @@ -115020,10 +115824,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(1101), 18, + ACTIONS(1227), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -115042,7 +115846,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, @@ -115090,10 +115894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1057), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 18, + ACTIONS(2378), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -115112,7 +115916,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2274), 40, + ACTIONS(2380), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115158,10 +115962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1058), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 20, + ACTIONS(3390), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115182,7 +115986,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, @@ -115226,50 +116030,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, + ACTIONS(1117), 1, anon_sym_DASH, - ACTIONS(1275), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(1285), 1, + ACTIONS(1177), 1, sym__raw_string_literal_start, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(3376), 1, + ACTIONS(3392), 1, sym_identifier, - ACTIONS(3386), 1, + ACTIONS(3402), 1, sym_metavariable, - STATE(2126), 1, + STATE(2168), 1, sym_scoped_identifier, - STATE(2208), 1, + STATE(2204), 1, sym__literal_pattern, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1277), 2, + ACTIONS(1169), 2, anon_sym_true, anon_sym_false, - STATE(1059), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 3, + ACTIONS(1165), 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(2093), 4, + STATE(2112), 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, @@ -115277,7 +116081,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, @@ -115305,50 +116109,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, + ACTIONS(1117), 1, anon_sym_DASH, - ACTIONS(1275), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(1285), 1, + ACTIONS(1177), 1, sym__raw_string_literal_start, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(3388), 1, + ACTIONS(3404), 1, sym_identifier, - ACTIONS(3398), 1, + ACTIONS(3414), 1, sym_metavariable, - STATE(2117), 1, + STATE(2171), 1, sym_scoped_identifier, - STATE(2183), 1, + STATE(2216), 1, sym__literal_pattern, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1277), 2, + ACTIONS(1169), 2, anon_sym_true, anon_sym_false, - STATE(1060), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 3, + ACTIONS(1165), 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(2093), 4, + STATE(2112), 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, @@ -115356,7 +116160,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, @@ -115384,50 +116188,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, + ACTIONS(1117), 1, anon_sym_DASH, - ACTIONS(1275), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(1285), 1, + ACTIONS(1177), 1, sym__raw_string_literal_start, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(3400), 1, + ACTIONS(3416), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(3426), 1, sym_metavariable, - STATE(2112), 1, + STATE(2169), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2179), 1, sym__literal_pattern, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1277), 2, + ACTIONS(1169), 2, anon_sym_true, anon_sym_false, - STATE(1061), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 3, + ACTIONS(1165), 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(2093), 4, + STATE(2112), 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, @@ -115435,7 +116239,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, @@ -115461,22 +116265,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3418), 1, + ACTIONS(3434), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - ACTIONS(3422), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1206), 1, + STATE(1288), 1, sym_type_arguments, - STATE(1232), 1, + STATE(1301), 1, sym_parameters, - STATE(1062), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3416), 17, + ACTIONS(3432), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115494,7 +116298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 27, + ACTIONS(3428), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115529,22 +116333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3444), 1, anon_sym_BANG, - ACTIONS(3430), 1, + ACTIONS(3446), 1, anon_sym_COLON_COLON, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(3434), 1, + ACTIONS(3450), 1, anon_sym_move, - STATE(1450), 1, + STATE(1468), 1, sym_block, - STATE(3680), 1, + STATE(3714), 1, sym_label, - STATE(1063), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115560,7 +116364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 28, + ACTIONS(3440), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115594,22 +116398,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3420), 1, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - ACTIONS(3422), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(3440), 1, + ACTIONS(3456), 1, anon_sym_BANG, - STATE(1206), 1, + STATE(1288), 1, sym_type_arguments, - STATE(1232), 1, + STATE(1301), 1, sym_parameters, - STATE(1064), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, + ACTIONS(3454), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115627,7 +116431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 27, + ACTIONS(3452), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115660,22 +116464,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3418), 1, + ACTIONS(3434), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - ACTIONS(3422), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1206), 1, + STATE(1288), 1, sym_type_arguments, - STATE(1232), 1, + STATE(1301), 1, sym_parameters, - STATE(1065), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, + ACTIONS(3460), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115693,7 +116497,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, @@ -115721,79 +116525,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [829] = 10, + [829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(3422), 1, - anon_sym_LT2, - ACTIONS(3450), 1, + STATE(1073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1467), 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, - STATE(1206), 1, - sym_type_arguments, - STATE(1232), 1, - sym_parameters, - STATE(1066), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1469), 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] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3448), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1449), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, 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(3446), 27, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1451), 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, + [957] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1433), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [903] = 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1435), 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, + [1021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 9, + ACTIONS(1441), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115803,7 +116720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1433), 40, + ACTIONS(1443), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115844,25 +116761,36 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [967] = 5, + [1085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + ACTIONS(3466), 1, + anon_sym_POUND, + STATE(1145), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1077), 3, sym_line_comment, sym_block_comment, - ACTIONS(1423), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + aux_sym_match_arm_repeat1, + ACTIONS(3464), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1425), 40, + ACTIONS(3462), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115880,38 +116808,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_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, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [1031] = 5, + [1153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 9, + ACTIONS(1047), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115921,7 +116840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1437), 40, + ACTIONS(1045), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115962,133 +116881,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1095] = 5, + [1217] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + STATE(1288), 1, + sym_type_arguments, + STATE(1301), 1, + sym_parameters, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3471), 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1429), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1159] = 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(1419), 9, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3469), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1421), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1223] = 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_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, + [1291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 9, + ACTIONS(1531), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116098,7 +116963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1041), 40, + ACTIONS(1533), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116139,76 +117004,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1287] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_POUND, - STATE(1140), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1073), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3454), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3452), 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, [1355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 9, + ACTIONS(1055), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116218,7 +117022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1483), 40, + ACTIONS(1053), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116264,10 +117068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 9, + ACTIONS(1437), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116277,7 +117081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1443), 40, + ACTIONS(1439), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116323,10 +117127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 9, + ACTIONS(1445), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116336,7 +117140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1037), 40, + ACTIONS(1447), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116377,79 +117181,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1547] = 7, + [1547] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_POUND, - STATE(1120), 1, - sym_attribute_item, - STATE(1077), 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, - [1614] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3466), 1, - anon_sym_BANG, - ACTIONS(3468), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1289), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3464), 17, + ACTIONS(3477), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116467,9 +117215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3462), 29, + ACTIONS(3475), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -116496,16 +117243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1681] = 5, + [1618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1079), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 9, + ACTIONS(2250), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116515,7 +117261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2318), 39, + ACTIONS(2252), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116555,66 +117301,102 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1744] = 24, + [1681] = 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(3324), 1, + ACTIONS(3358), 1, anon_sym_SQUOTE, - ACTIONS(3470), 1, + ACTIONS(3479), 1, sym_identifier, - ACTIONS(3474), 1, + ACTIONS(3483), 1, anon_sym_LPAREN, - ACTIONS(3476), 1, + ACTIONS(3485), 1, anon_sym_STAR, - ACTIONS(3480), 1, + ACTIONS(3489), 1, anon_sym_AMP, - ACTIONS(3482), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3486), 1, + ACTIONS(3495), 1, anon_sym_for, - ACTIONS(3490), 1, + ACTIONS(3499), 1, sym_metavariable, - STATE(2528), 1, + STATE(2559), 1, sym_where_predicate, - STATE(2656), 1, + STATE(2796), 1, sym_scoped_type_identifier, - STATE(2907), 1, + STATE(3036), 1, sym_generic_type, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, + STATE(3610), 1, sym_scoped_identifier, - STATE(3752), 1, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, sym_generic_type_with_turbofish, - STATE(1080), 2, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3472), 3, + ACTIONS(3481), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3484), 3, + ACTIONS(3493), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3488), 3, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - STATE(3160), 6, + STATE(3215), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3478), 17, + 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, + [1782] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1087), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2512), 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(2514), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116632,19 +117414,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, [1845] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(3505), 1, anon_sym_BANG, - ACTIONS(3498), 1, + ACTIONS(3507), 1, anon_sym_COLON_COLON, - STATE(1081), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 17, + ACTIONS(3503), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116662,7 +117466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3492), 29, + ACTIONS(3501), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116692,19 +117496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1912] = 7, + [1912] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, - anon_sym_BANG, - ACTIONS(3506), 1, - anon_sym_COLON_COLON, - STATE(1082), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1289), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 17, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116722,9 +117530,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 29, + ACTIONS(3509), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -116751,67 +117558,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1979] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [1983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3324), 1, - anon_sym_SQUOTE, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3474), 1, - anon_sym_LPAREN, - ACTIONS(3476), 1, - anon_sym_STAR, - ACTIONS(3480), 1, - anon_sym_AMP, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3486), 1, - anon_sym_for, - ACTIONS(3490), 1, - sym_metavariable, - STATE(2424), 1, - sym_where_predicate, - STATE(2656), 1, - sym_scoped_type_identifier, - STATE(2907), 1, - sym_generic_type, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, - sym_scoped_identifier, - STATE(3752), 1, - sym_generic_type_with_turbofish, - STATE(1083), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3488), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3508), 3, + ACTIONS(2974), 9, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, - STATE(3160), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3478), 17, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116829,23 +117594,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2080] = 9, + 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, + [2046] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3422), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1208), 1, + STATE(1289), 1, sym_type_arguments, - STATE(1234), 1, + STATE(1303), 1, sym_parameters, - STATE(1084), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 17, + ACTIONS(3515), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116863,7 +117650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 27, + ACTIONS(3513), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116891,102 +117678,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2151] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [2117] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3324), 1, - anon_sym_SQUOTE, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3474), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3476), 1, - anon_sym_STAR, - ACTIONS(3480), 1, - anon_sym_AMP, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3486), 1, - anon_sym_for, - ACTIONS(3490), 1, - sym_metavariable, - STATE(2528), 1, - sym_where_predicate, - STATE(2656), 1, - sym_scoped_type_identifier, - STATE(2907), 1, - sym_generic_type, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, - sym_scoped_identifier, - STATE(3752), 1, - sym_generic_type_with_turbofish, - STATE(1085), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1289), 1, + sym_type_arguments, + STATE(1303), 1, + sym_parameters, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3488), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3514), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3160), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3478), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2252] = 5, + ACTIONS(3519), 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(3517), 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, + [2188] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1086), 2, + ACTIONS(3521), 1, + anon_sym_POUND, + STATE(1254), 1, + sym_attribute_item, + STATE(1093), 3, sym_line_comment, sym_block_comment, - ACTIONS(1930), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + aux_sym_enum_variant_list_repeat1, + ACTIONS(763), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(3376), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117007,42 +117786,110 @@ 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, - [2315] = 9, + [2255] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3358), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, anon_sym_LPAREN, - ACTIONS(3422), 1, - anon_sym_LT2, - STATE(1208), 1, - sym_type_arguments, - STATE(1234), 1, - sym_parameters, - STATE(1087), 2, + 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(2559), 1, + sym_where_predicate, + STATE(2796), 1, + sym_scoped_type_identifier, + STATE(3036), 1, + sym_generic_type, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(1094), 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(3524), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3215), 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, + [2356] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3530), 1, + anon_sym_BANG, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 17, + ACTIONS(3528), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117060,8 +117907,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 27, + ACTIONS(3526), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117088,19 +117936,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2386] = 7, + anon_sym_LT2, + [2423] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2658), 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(2660), 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, + [2486] = 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(2794), 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(2796), 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, + [2549] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, + ACTIONS(3538), 1, anon_sym_BANG, - ACTIONS(3526), 1, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - STATE(1088), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 17, + ACTIONS(3536), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117118,7 +118083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3520), 29, + ACTIONS(3534), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117148,23 +118113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2453] = 9, + [2616] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(3422), 1, - anon_sym_LT2, - STATE(1208), 1, - sym_type_arguments, - STATE(1234), 1, - sym_parameters, - STATE(1089), 2, + ACTIONS(3546), 1, + anon_sym_BANG, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 17, + ACTIONS(3544), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117182,8 +118143,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3528), 27, + ACTIONS(3542), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117210,25 +118172,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2524] = 5, + anon_sym_LT2, + [2683] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3358), 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(2425), 1, + sym_where_predicate, + STATE(2796), 1, + sym_scoped_type_identifier, + STATE(3036), 1, + sym_generic_type, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2092), 9, + ACTIONS(3493), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3550), 3, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2094), 39, + STATE(3215), 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, @@ -117246,47 +118250,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2587] = 5, + [2784] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + ACTIONS(3556), 1, + anon_sym_RBRACE, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2674), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3554), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, + 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(2676), 39, + ACTIONS(3552), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117304,47 +118294,47 @@ 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, - [2650] = 5, + [2848] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + ACTIONS(3562), 1, + anon_sym_RBRACE, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2934), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3560), 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_COMMA, + 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(2936), 39, + ACTIONS(3558), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117362,64 +118352,48 @@ 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, - [2713] = 9, + [2912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(3422), 1, - anon_sym_LT2, - STATE(1208), 1, - sym_type_arguments, - STATE(1234), 1, - sym_parameters, - STATE(1093), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3530), 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(3532), 27, + ACTIONS(3532), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117436,25 +118410,88 @@ 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, - [2784] = 5, + [2974] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + ACTIONS(3564), 1, + anon_sym_BANG, + STATE(1104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3442), 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(3440), 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, + [3042] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 13, + ACTIONS(3570), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117468,7 +118505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3536), 34, + ACTIONS(3568), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117503,72 +118540,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2846] = 5, + [3104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3466), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3468), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2908] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1096), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3542), 13, + ACTIONS(3574), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117582,7 +118562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3540), 34, + ACTIONS(3572), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117617,15 +118597,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2970] = 5, + [3166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 16, + ACTIONS(3505), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117642,7 +118622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3498), 31, + ACTIONS(3507), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117674,79 +118654,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3032] = 5, + [3228] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3546), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(3456), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(3578), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3544), 34, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3094] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1481), 1, + sym_field_initializer_list, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 16, + ACTIONS(1459), 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, @@ -117756,13 +118686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 31, + ACTIONS(1457), 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, @@ -117784,33 +118713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3156] = 9, + [3298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(3548), 1, - anon_sym_LBRACE, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - STATE(1490), 1, - sym_field_initializer_list, - STATE(1100), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 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, @@ -117820,12 +118740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 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, @@ -117847,92 +118768,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3226] = 6, + [3360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_RBRACE, - STATE(1101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3554), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3552), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3290] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_COLON_COLON, - ACTIONS(3558), 1, - anon_sym_BANG, - STATE(1102), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3426), 16, + ACTIONS(3546), 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, @@ -117942,11 +118797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3424), 23, + ACTIONS(3548), 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, @@ -117967,33 +118824,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [3358] = 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, - anon_sym_RBRACE, - STATE(1103), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3564), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3582), 13, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_EQ, 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, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3562), 31, + ACTIONS(3580), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118011,29 +118869,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, anon_sym_gen, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3422] = 5, + [3484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 13, + ACTIONS(3586), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118047,7 +118908,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, @@ -118082,72 +118943,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3484] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1105), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3504), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3506), 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, [3546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2946), 7, + ACTIONS(2060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118155,7 +118959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(2062), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118200,10 +119004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118211,7 +119015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 39, + ACTIONS(1840), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118256,10 +119060,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(2666), 7, + ACTIONS(3030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118267,7 +119071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2668), 39, + ACTIONS(3032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118312,10 +119116,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(1970), 7, + ACTIONS(3034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118323,7 +119127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(3036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118368,10 +119172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(3038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118379,7 +119183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(3040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118424,10 +119228,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(1978), 7, + ACTIONS(3042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118435,7 +119239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(3044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118480,10 +119284,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(1982), 7, + ACTIONS(3046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118491,7 +119295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(3048), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118536,10 +119340,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(1986), 7, + ACTIONS(3054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118547,7 +119351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 39, + ACTIONS(3056), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118592,10 +119396,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(1990), 7, + ACTIONS(3058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118603,7 +119407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(3060), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118648,10 +119452,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(2680), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118659,7 +119463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2682), 39, + ACTIONS(1844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118704,10 +119508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118715,7 +119519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(1848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118760,10 +119564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118771,7 +119575,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, @@ -118816,10 +119620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118827,7 +119631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(1856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118872,10 +119676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118883,7 +119687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(1860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118928,23 +119732,18 @@ 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(3364), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(1862), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3362), 34, + ACTIONS(1864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118965,16 +119764,21 @@ 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, @@ -118984,10 +119788,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(2272), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118995,7 +119799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2274), 39, + ACTIONS(1876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119040,10 +119844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119051,7 +119855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(1880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119091,72 +119895,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4583] = 6, + [4583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(1123), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3504), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3506), 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, - [4646] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119164,7 +119911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2690), 39, + ACTIONS(1884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119204,58 +119951,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4707] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [4644] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3392), 1, - anon_sym_if, - ACTIONS(3574), 1, - sym_identifier, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3582), 1, - sym_metavariable, - STATE(2774), 1, - sym_scoped_identifier, - STATE(2984), 1, - sym__literal_pattern, - STATE(3594), 1, - sym_bracketed_type, - STATE(3611), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3390), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1125), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3580), 3, - sym_self, - sym_super, - sym_crate, - STATE(2385), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3576), 20, + ACTIONS(1886), 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(1888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119273,18 +119985,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [4800] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4705] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119292,7 +120023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2694), 39, + ACTIONS(1892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119332,72 +120063,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4861] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3584), 1, - anon_sym_COLON_COLON, - STATE(1127), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4924] = 5, + [4766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119405,7 +120079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(1896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119445,15 +120119,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4985] = 5, + [4827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2698), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119461,7 +120135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2700), 39, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119501,15 +120175,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5046] = 5, + [4888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119517,7 +120191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 39, + ACTIONS(1904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119557,15 +120231,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5107] = 5, + [4949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119573,7 +120247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(1908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119613,129 +120287,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5168] = 6, + [5010] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3586), 1, - anon_sym_COLON_COLON, - STATE(1132), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(1910), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5231] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1912), 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, + [5071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3588), 1, - anon_sym_COLON_COLON, - STATE(1133), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(1914), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5294] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1916), 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, + [5132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(3062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119743,7 +120415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 39, + ACTIONS(3064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119783,15 +120455,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5355] = 5, + [5193] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119799,7 +120471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 39, + ACTIONS(1924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119839,15 +120511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5416] = 5, + [5254] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119855,7 +120527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(1932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119895,15 +120567,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5477] = 5, + [5315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119911,7 +120583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 39, + ACTIONS(1936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119951,15 +120623,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5538] = 5, + [5376] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119967,7 +120639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 39, + ACTIONS(1940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120007,15 +120679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5599] = 5, + [5437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120023,7 +120695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 39, + ACTIONS(1944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120063,15 +120735,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5660] = 5, + [5498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(3592), 15, + ACTIONS(3590), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -120087,7 +120759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3590), 31, + ACTIONS(3588), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120119,127 +120791,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5721] = 5, + [5559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3596), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3594), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5782] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1142), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3598), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5843] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 15, + ACTIONS(3594), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -120255,7 +120815,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2274), 31, + ACTIONS(3592), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120287,15 +120847,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5904] = 5, + [5620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2702), 7, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120303,7 +120863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2704), 39, + ACTIONS(2168), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120343,15 +120903,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5965] = 5, + [5681] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3564), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_move, + STATE(413), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2048), 7, + ACTIONS(3442), 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(3440), 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, + [5756] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1149), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120359,7 +120982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2050), 39, + ACTIONS(2172), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120399,15 +121022,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6026] = 5, + [5817] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2706), 7, + ACTIONS(3511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3509), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5880] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1151), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120415,7 +121095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2708), 39, + ACTIONS(2180), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120455,15 +121135,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6087] = 5, + [5941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 7, + ACTIONS(2182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120471,7 +121151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2054), 39, + ACTIONS(2184), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120511,15 +121191,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6148] = 5, + [6002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2056), 7, + ACTIONS(2186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120527,7 +121207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2058), 39, + ACTIONS(2188), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120567,15 +121247,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6209] = 5, + [6063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 7, + ACTIONS(2190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120583,7 +121263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2062), 39, + ACTIONS(2192), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120623,15 +121303,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6270] = 5, + [6124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2064), 7, + ACTIONS(2194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120639,7 +121319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2066), 39, + ACTIONS(2196), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120679,15 +121359,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6331] = 5, + [6185] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + ACTIONS(3600), 1, + anon_sym_COLON_COLON, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2068), 7, + ACTIONS(1459), 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(1457), 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, + [6248] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120695,7 +121432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2070), 39, + ACTIONS(2200), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120735,71 +121472,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6392] = 5, + [6309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + ACTIONS(3602), 1, + anon_sym_LBRACE, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2072), 7, + ACTIONS(3530), 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(3532), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2074), 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, - [6453] = 5, + anon_sym_as, + anon_sym_else, + [6372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(2206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120807,7 +121545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2712), 39, + ACTIONS(2208), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120847,15 +121585,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6514] = 5, + [6433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 7, + ACTIONS(2210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120863,7 +121601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2716), 39, + ACTIONS(2212), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120903,71 +121641,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6575] = 5, + [6494] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + ACTIONS(3604), 1, + anon_sym_LBRACE, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2524), 7, + 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, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3507), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2526), 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, - [6636] = 5, + anon_sym_as, + anon_sym_else, + [6557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2652), 7, + ACTIONS(2214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120975,7 +121714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2654), 39, + ACTIONS(2216), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121015,15 +121754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6697] = 5, + [6618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2076), 7, + ACTIONS(2218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121031,7 +121770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2078), 39, + ACTIONS(2220), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121071,15 +121810,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6758] = 5, + [6679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2080), 7, + ACTIONS(2222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121087,7 +121826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2082), 39, + ACTIONS(2224), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121127,15 +121866,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6819] = 5, + [6740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 7, + ACTIONS(2226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121143,7 +121882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2720), 39, + ACTIONS(2228), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121183,15 +121922,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6880] = 5, + [6801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2084), 7, + ACTIONS(2230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121199,7 +121938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2086), 39, + ACTIONS(2232), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121239,72 +121978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6941] = 6, + [6862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - STATE(1161), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1473), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1475), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7004] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2722), 7, + ACTIONS(2234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121312,7 +121994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2724), 39, + ACTIONS(2236), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121352,78 +122034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7065] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_COLON_COLON, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3558), 1, - anon_sym_BANG, - ACTIONS(3604), 1, - anon_sym_move, - STATE(407), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(1163), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3424), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [7140] = 5, + [6923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 7, + ACTIONS(2238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121431,7 +122050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2730), 39, + ACTIONS(2240), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121471,15 +122090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7201] = 5, + [6984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 7, + ACTIONS(2242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121487,7 +122106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2734), 39, + ACTIONS(2244), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121527,15 +122146,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7262] = 5, + [7045] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2088), 7, + ACTIONS(3608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121543,7 +122162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2090), 39, + ACTIONS(3606), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121583,15 +122202,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7323] = 5, + [7106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1171), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3612), 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(3610), 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, + [7167] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 7, + ACTIONS(2254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121599,7 +122274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2738), 39, + ACTIONS(2256), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121639,15 +122314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7384] = 5, + [7228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 7, + ACTIONS(2258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121655,7 +122330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2260), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121695,66 +122370,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7445] = 26, - ACTIONS(29), 1, - anon_sym_LT, + [7289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1265), 1, - anon_sym_extern, - ACTIONS(3222), 1, - anon_sym_fn, - ACTIONS(3606), 1, - sym_identifier, - ACTIONS(3608), 1, - anon_sym_LPAREN, - ACTIONS(3612), 1, - anon_sym_COLON_COLON, - ACTIONS(3614), 1, - anon_sym_default, - ACTIONS(3616), 1, - anon_sym_for, - ACTIONS(3622), 1, - sym_metavariable, - STATE(1087), 1, - sym_scoped_type_identifier, - STATE(1226), 1, - sym_generic_type, - STATE(1638), 1, - sym_for_lifetimes, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(2467), 1, - sym_extern_modifier, - STATE(3616), 1, - sym_scoped_identifier, - STATE(3651), 1, - sym_generic_type_with_turbofish, - STATE(3663), 1, - sym_bracketed_type, - STATE(3748), 1, - sym_function_modifiers, - ACTIONS(3618), 2, - anon_sym_gen, - anon_sym_union, - STATE(1169), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(1249), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3620), 3, - sym_self, - sym_super, - sym_crate, - STATE(1459), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3610), 17, + ACTIONS(2262), 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(2264), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121772,15 +122404,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7548] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7350] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121788,7 +122442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2742), 39, + ACTIONS(2268), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121828,92 +122482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7609] = 26, - ACTIONS(29), 1, - anon_sym_LT, + [7411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1265), 1, - anon_sym_extern, - ACTIONS(1621), 1, - anon_sym_fn, - ACTIONS(3474), 1, - anon_sym_LPAREN, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3624), 1, - sym_identifier, - ACTIONS(3628), 1, - anon_sym_default, - ACTIONS(3630), 1, - anon_sym_for, - STATE(1615), 1, - sym_for_lifetimes, - STATE(2020), 1, - sym_generic_type, - STATE(2215), 1, - sym_scoped_type_identifier, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(2467), 1, - sym_extern_modifier, - STATE(3598), 1, - sym_bracketed_type, - STATE(3650), 1, - sym_function_modifiers, - STATE(3668), 1, - sym_scoped_identifier, - STATE(3752), 1, - sym_generic_type_with_turbofish, - ACTIONS(3484), 2, - anon_sym_gen, - anon_sym_union, - STATE(1171), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1249), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - sym_self, - sym_super, - sym_crate, - STATE(2068), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3626), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [7712] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2096), 7, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121921,7 +122498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2098), 39, + ACTIONS(2272), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121961,15 +122538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7773] = 5, + [7472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 7, + ACTIONS(2274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121977,7 +122554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2746), 39, + ACTIONS(2276), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122017,15 +122594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7834] = 5, + [7533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2100), 7, + ACTIONS(2278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122033,7 +122610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2102), 39, + ACTIONS(2280), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122073,15 +122650,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7895] = 5, + [7594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, + ACTIONS(2282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122089,7 +122666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2500), 39, + ACTIONS(2284), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122129,23 +122706,28 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7956] = 5, + [7655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2378), 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(2750), 39, + ACTIONS(2380), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122166,146 +122748,86 @@ 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, - [8017] = 5, + [7716] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + ACTIONS(3614), 1, + anon_sym_LBRACE, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3546), 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2754), 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, - [8078] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1178), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2104), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3548), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2106), 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, - [8139] = 5, + anon_sym_as, + anon_sym_else, + [7779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2108), 7, + ACTIONS(2286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122313,7 +122835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2110), 39, + ACTIONS(2288), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122353,15 +122875,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8200] = 5, + [7840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2760), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122369,7 +122891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2762), 39, + ACTIONS(2292), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122409,15 +122931,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8261] = 5, + [7901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122425,7 +122947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2766), 39, + ACTIONS(2296), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122465,15 +122987,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8322] = 5, + [7962] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2112), 7, + ACTIONS(2298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122481,7 +123003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2114), 39, + ACTIONS(2300), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122521,23 +123043,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8383] = 5, + [8023] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2116), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2166), 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(2118), 39, + ACTIONS(2168), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122555,37 +123085,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [8444] = 5, + [8084] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2120), 7, + ACTIONS(2302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122593,7 +123115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2122), 39, + ACTIONS(2304), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122633,15 +123155,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8505] = 5, + [8145] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 7, + ACTIONS(2306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122649,7 +123171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2770), 39, + ACTIONS(2308), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122689,15 +123211,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8566] = 5, + [8206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2124), 7, + ACTIONS(3618), 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(3616), 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, + [8267] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1190), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3622), 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(3620), 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, + [8328] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1191), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122705,7 +123339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2126), 39, + ACTIONS(2312), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122745,15 +123379,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8627] = 5, + [8389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2128), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122761,7 +123395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2130), 39, + ACTIONS(2316), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122801,15 +123435,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8688] = 5, + [8450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2132), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122817,7 +123451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2134), 39, + ACTIONS(2320), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122857,15 +123491,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8749] = 5, + [8511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2136), 7, + ACTIONS(2322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122873,7 +123507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2138), 39, + ACTIONS(2324), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122913,15 +123547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8810] = 5, + [8572] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2140), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122929,7 +123563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2142), 39, + ACTIONS(2328), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122969,15 +123603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8871] = 5, + [8633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2144), 7, + ACTIONS(2330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122985,7 +123619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2146), 39, + ACTIONS(2332), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123025,15 +123659,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8932] = 5, + [8694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2148), 7, + ACTIONS(2334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123041,7 +123675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2150), 39, + ACTIONS(2336), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123081,15 +123715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8993] = 5, + [8755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 7, + ACTIONS(2338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123097,7 +123731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2774), 39, + ACTIONS(2340), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123137,15 +123771,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9054] = 5, + [8816] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2776), 7, + ACTIONS(2342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123153,7 +123787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2778), 39, + ACTIONS(2344), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123193,15 +123827,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9115] = 5, + [8877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2152), 7, + ACTIONS(2346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123209,7 +123843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2154), 39, + ACTIONS(2348), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123249,87 +123883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9176] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3380), 1, - anon_sym_if, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3638), 1, - sym_metavariable, - STATE(2754), 1, - sym_scoped_identifier, - STATE(2943), 1, - sym__literal_pattern, - STATE(3594), 1, - sym_bracketed_type, - STATE(3611), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3378), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1196), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3636), 3, - sym_self, - sym_super, - sym_crate, - STATE(2385), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3634), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [9269] = 5, + [8938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 7, + ACTIONS(2350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123337,7 +123899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2782), 39, + ACTIONS(2352), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123377,15 +123939,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9330] = 5, + [8999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2784), 7, + ACTIONS(2354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123393,7 +123955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2786), 39, + ACTIONS(2356), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123433,15 +123995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9391] = 5, + [9060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2156), 7, + ACTIONS(2358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123449,7 +124011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2158), 39, + ACTIONS(2360), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123489,15 +124051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9452] = 5, + [9121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 7, + ACTIONS(2362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123505,7 +124067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2790), 39, + ACTIONS(2364), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123545,15 +124107,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9513] = 5, + [9182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2160), 7, + ACTIONS(2366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123561,7 +124123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2162), 39, + ACTIONS(2368), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123601,15 +124163,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9574] = 5, + [9243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2164), 7, + ACTIONS(2370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123617,7 +124179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2166), 39, + ACTIONS(2372), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123657,71 +124219,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9635] = 5, + [9304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3642), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3640), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9696] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 7, + ACTIONS(2378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123729,7 +124235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2794), 39, + ACTIONS(2380), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123769,58 +124275,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9757] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [9365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3404), 1, - anon_sym_if, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, - sym_metavariable, - STATE(2590), 1, - sym_scoped_identifier, - STATE(2889), 1, - sym__literal_pattern, - STATE(3594), 1, - sym_bracketed_type, - STATE(3611), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3402), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1205), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3648), 3, + ACTIONS(2382), 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(2384), 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, - STATE(2385), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3646), 20, + [9426] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2386), 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(2388), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123838,18 +124365,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [9850] = 5, + 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, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(3626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123865,7 +124411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3652), 31, + ACTIONS(3624), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123897,23 +124443,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9911] = 5, + [9548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2168), 7, + ACTIONS(3630), 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(3628), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [9609] = 26, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(1635), 1, + anon_sym_fn, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(2170), 39, + ACTIONS(3632), 1, + sym_identifier, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(3638), 1, + anon_sym_for, + STATE(1632), 1, + sym_for_lifetimes, + STATE(2040), 1, + sym_generic_type, + STATE(2239), 1, + sym_scoped_type_identifier, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3583), 1, + sym_function_modifiers, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(2064), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3634), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123931,43 +124576,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [9972] = 5, + [9712] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + ACTIONS(3640), 1, + anon_sym_LBRACE, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 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, @@ -123977,13 +124603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 31, + ACTIONS(3540), 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, @@ -124006,18 +124631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10033] = 5, + [9775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2172), 7, + ACTIONS(2410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124025,7 +124649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2174), 39, + ACTIONS(2412), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124065,23 +124689,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10094] = 5, + [9836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2176), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2378), 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(2178), 39, + ACTIONS(2380), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124099,37 +124731,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [10155] = 5, + [9897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2180), 7, + ACTIONS(2418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124137,7 +124761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2182), 39, + ACTIONS(2420), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124177,15 +124801,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10216] = 5, + [9958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2184), 7, + ACTIONS(2422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124193,7 +124817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2186), 39, + ACTIONS(2424), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124233,15 +124857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10277] = 5, + [10019] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2188), 7, + ACTIONS(2426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124249,7 +124873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2190), 39, + ACTIONS(2428), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124289,15 +124913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10338] = 5, + [10080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2796), 7, + ACTIONS(2430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124305,7 +124929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2798), 39, + ACTIONS(2432), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124345,15 +124969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10399] = 5, + [10141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 7, + ACTIONS(2434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124361,7 +124985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2802), 39, + ACTIONS(2436), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124401,15 +125025,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10460] = 5, + [10202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 7, + ACTIONS(2438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124417,7 +125041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2806), 39, + ACTIONS(2440), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124457,15 +125081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10521] = 5, + [10263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2192), 7, + ACTIONS(2442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124473,7 +125097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2194), 39, + ACTIONS(2444), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124513,15 +125137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10582] = 5, + [10324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 7, + ACTIONS(2446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124529,7 +125153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2822), 39, + ACTIONS(2448), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124569,71 +125193,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10643] = 5, + [10385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3554), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3374), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10704] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3552), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2196), 7, + ACTIONS(2450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124641,7 +125265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2198), 39, + ACTIONS(2452), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124681,72 +125305,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10765] = 6, + [10507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3664), 1, - anon_sym_DASH_GT, - STATE(1221), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3662), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3660), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10828] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2200), 7, + ACTIONS(2454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124754,7 +125321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2202), 39, + ACTIONS(2456), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124794,72 +125361,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10889] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3588), 1, - anon_sym_COLON_COLON, - STATE(1223), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3512), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3510), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10952] = 5, + [10568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2204), 7, + ACTIONS(2458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124867,7 +125377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2206), 39, + ACTIONS(2460), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124907,15 +125417,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11013] = 5, + [10629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2208), 7, + ACTIONS(2462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124923,7 +125433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2210), 39, + ACTIONS(2464), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124963,72 +125473,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11074] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3588), 1, - anon_sym_COLON_COLON, - STATE(1226), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3516), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11137] = 5, + [10690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2212), 7, + ACTIONS(2466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125036,7 +125489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2214), 39, + ACTIONS(2468), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125076,15 +125529,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11198] = 5, + [10751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 7, + ACTIONS(2470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125092,7 +125545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2830), 39, + ACTIONS(2472), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125132,71 +125585,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11259] = 5, + [10812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3666), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11320] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2216), 7, + ACTIONS(2474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125204,7 +125601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2218), 39, + ACTIONS(2476), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125244,15 +125641,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11381] = 5, + [10873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2220), 7, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125260,7 +125657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2222), 39, + ACTIONS(2480), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125300,64 +125697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11442] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3674), 1, - anon_sym_DASH_GT, - STATE(1232), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3672), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3670), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11505] = 5, + [10934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125365,7 +125705,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2224), 7, + ACTIONS(2482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125373,7 +125713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2226), 39, + ACTIONS(2484), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125413,72 +125753,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11566] = 6, + [10995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3680), 1, - anon_sym_DASH_GT, STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 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(3676), 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, - [11629] = 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(2512), 7, + ACTIONS(2490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125486,7 +125769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(2492), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125526,15 +125809,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11690] = 5, + [11056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2228), 7, + ACTIONS(2494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125542,7 +125825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2230), 39, + ACTIONS(2496), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125582,15 +125865,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11751] = 5, + [11117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2232), 7, + ACTIONS(2504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125598,7 +125881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2234), 39, + ACTIONS(2506), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125638,7 +125921,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11812] = 5, + [11178] = 26, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3194), 1, + anon_sym_fn, + ACTIONS(3642), 1, + sym_identifier, + ACTIONS(3644), 1, + anon_sym_LPAREN, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, + ACTIONS(3650), 1, + anon_sym_default, + ACTIONS(3652), 1, + anon_sym_for, + ACTIONS(3658), 1, + sym_metavariable, + STATE(1092), 1, + sym_scoped_type_identifier, + STATE(1299), 1, + sym_generic_type, + STATE(1647), 1, + sym_for_lifetimes, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3651), 1, + sym_scoped_identifier, + STATE(3686), 1, + sym_generic_type_with_turbofish, + STATE(3698), 1, + sym_bracketed_type, + STATE(3772), 1, + sym_function_modifiers, + ACTIONS(3654), 2, + anon_sym_gen, + anon_sym_union, + STATE(1237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3656), 3, + sym_self, + sym_super, + sym_crate, + STATE(1519), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3646), 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, + [11281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125646,7 +126006,63 @@ static const uint16_t ts_small_parse_table[] = { STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2236), 7, + ACTIONS(1599), 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(1601), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11342] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125654,7 +126070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2238), 39, + ACTIONS(2518), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125694,23 +126110,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11873] = 5, + [11403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2240), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3560), 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(2242), 39, + ACTIONS(3558), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125728,37 +126152,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [11934] = 5, + [11464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 7, + ACTIONS(2520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125766,7 +126182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2246), 39, + ACTIONS(2522), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125806,192 +126222,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11995] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_BANG, - ACTIONS(3430), 1, - anon_sym_COLON_COLON, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3682), 1, - anon_sym_move, - STATE(488), 1, - sym_block, - STATE(3744), 1, - sym_label, - STATE(1241), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3424), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - [12070] = 7, + [11525] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3684), 1, - anon_sym_else, - STATE(1475), 1, - sym_else_clause, STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1413), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - [12135] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1243), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3686), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12196] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1244), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2248), 7, + ACTIONS(2526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125999,7 +126238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2250), 39, + ACTIONS(2528), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126039,15 +126278,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12257] = 5, + [11586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 7, + ACTIONS(2530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126055,7 +126294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2254), 39, + ACTIONS(2532), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126095,92 +126334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12318] = 26, - ACTIONS(29), 1, - anon_sym_LT, + [11647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1265), 1, - anon_sym_extern, - ACTIONS(3186), 1, - anon_sym_fn, - ACTIONS(3690), 1, - sym_identifier, - ACTIONS(3692), 1, - anon_sym_LPAREN, - ACTIONS(3696), 1, - anon_sym_COLON_COLON, - ACTIONS(3698), 1, - anon_sym_default, - ACTIONS(3700), 1, - anon_sym_for, - ACTIONS(3706), 1, - sym_metavariable, - STATE(1594), 1, - sym_scoped_type_identifier, - STATE(1607), 1, - sym_for_lifetimes, - STATE(1648), 1, - sym_generic_type, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(2467), 1, - sym_extern_modifier, - STATE(3606), 1, - sym_function_modifiers, - STATE(3642), 1, - sym_scoped_identifier, - STATE(3661), 1, - sym_generic_type_with_turbofish, - STATE(3667), 1, - sym_bracketed_type, - ACTIONS(3702), 2, - anon_sym_gen, - anon_sym_union, - STATE(1246), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1249), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3704), 3, - sym_self, - sym_super, - sym_crate, - STATE(1739), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3694), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [12421] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2580), 7, + ACTIONS(2534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126188,7 +126350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2582), 39, + ACTIONS(2536), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126228,15 +126390,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12482] = 5, + [11708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2256), 7, + ACTIONS(2538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126244,7 +126406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2258), 39, + ACTIONS(2540), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126284,15 +126446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12543] = 5, + [11769] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2588), 7, + ACTIONS(2542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126300,7 +126462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2590), 39, + ACTIONS(2544), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126340,15 +126502,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12604] = 5, + [11830] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126356,7 +126518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2614), 39, + ACTIONS(1920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126396,15 +126558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12665] = 5, + [11891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 7, + ACTIONS(2546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126412,7 +126574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2262), 39, + ACTIONS(2548), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126452,15 +126614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12726] = 5, + [11952] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2662), 7, + ACTIONS(2550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126468,7 +126630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2664), 39, + ACTIONS(2552), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126508,15 +126670,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12787] = 5, + [12013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2264), 7, + ACTIONS(2554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126524,7 +126686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2266), 39, + ACTIONS(2556), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126564,15 +126726,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12848] = 5, + [12074] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1496), 1, + sym_label, + STATE(1251), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3662), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3660), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [12139] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 7, + ACTIONS(2558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126580,7 +126800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2838), 39, + ACTIONS(2560), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126620,15 +126840,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12909] = 5, + [12200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2670), 7, + ACTIONS(2562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126636,7 +126856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2672), 39, + ACTIONS(2564), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126676,23 +126896,28 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12970] = 5, + [12261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2268), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3380), 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(2270), 39, + ACTIONS(3378), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126713,34 +126938,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13031] = 5, + [12322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 7, + ACTIONS(2566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126748,7 +126968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2842), 39, + ACTIONS(2568), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126788,31 +127008,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13092] = 5, + [12383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2570), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3708), 31, + ACTIONS(2572), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126830,37 +127042,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [13153] = 5, + [12444] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2808), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - 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(3420), 1, + anon_sym_if, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3668), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3672), 1, sym_metavariable, - ACTIONS(2810), 39, + STATE(2830), 1, + sym_scoped_identifier, + STATE(3090), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3418), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1257), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3670), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3666), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126878,37 +127133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13214] = 5, + [12537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 7, + ACTIONS(2574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126916,7 +127152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2814), 39, + ACTIONS(2576), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126956,15 +127192,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13275] = 5, + [12598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 7, + ACTIONS(2578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126972,7 +127208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2508), 39, + ACTIONS(2580), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127012,15 +127248,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13336] = 5, + [12659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2844), 7, + ACTIONS(3026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127028,7 +127264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2846), 39, + ACTIONS(3028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127068,15 +127304,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13397] = 5, + [12720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 7, + ACTIONS(2590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127084,7 +127320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2818), 39, + ACTIONS(2592), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127124,15 +127360,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13458] = 5, + [12781] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + 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, + [12844] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1263), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127140,7 +127433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(2596), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127180,63 +127473,121 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13519] = 5, + [12905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + ACTIONS(3676), 1, + anon_sym_COLON_COLON, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + 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_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12968] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3598), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2980), 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, - [13580] = 5, + STATE(1265), 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, + [13031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -127244,7 +127595,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2848), 7, + ACTIONS(2598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127252,7 +127603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2850), 39, + ACTIONS(2600), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127292,15 +127643,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13641] = 5, + [13092] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3680), 1, + anon_sym_LPAREN, + STATE(1552), 1, + sym_arguments, STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2852), 7, + ACTIONS(3682), 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(3678), 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, + [13157] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1268), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127308,7 +127717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2854), 39, + ACTIONS(2604), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127348,15 +127757,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13702] = 5, + [13218] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(2606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127364,7 +127773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(2608), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127404,15 +127813,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13763] = 5, + [13279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 7, + ACTIONS(2610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127420,7 +127829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2826), 39, + ACTIONS(2612), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127460,15 +127869,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13824] = 5, + [13340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2856), 7, + ACTIONS(2152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127476,7 +127885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2858), 39, + ACTIONS(2154), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127516,15 +127925,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13885] = 5, + [13401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2860), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127532,7 +127941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2862), 39, + ACTIONS(2160), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127572,15 +127981,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13946] = 5, + [13462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2864), 7, + ACTIONS(2614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127588,7 +127997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2866), 39, + ACTIONS(2616), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127628,15 +128037,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14007] = 5, + [13523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, + ACTIONS(2618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127644,7 +128053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(2620), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127684,15 +128093,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14068] = 5, + [13584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 7, + ACTIONS(2622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127700,7 +128109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2870), 39, + ACTIONS(2624), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127740,15 +128149,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14129] = 5, + [13645] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(2626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127756,7 +128165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(2628), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127796,15 +128205,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14190] = 5, + [13706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2872), 7, + ACTIONS(2630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127812,7 +128221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2874), 39, + ACTIONS(2632), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127852,19 +128261,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14251] = 7, + [13767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3714), 1, - anon_sym_LPAREN, - STATE(1506), 1, - sym_arguments, - STATE(1277), 2, + STATE(1278), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2662), 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(2664), 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, + [13828] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2666), 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(2668), 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, + [13889] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127880,8 +128397,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 29, + ACTIONS(3684), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -127907,26 +128425,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14316] = 5, + [13950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(3690), 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(3688), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14011] = 21, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3408), 1, + anon_sym_if, + ACTIONS(3668), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3692), 1, + sym_identifier, + ACTIONS(3698), 1, sym_metavariable, - ACTIONS(2968), 39, + STATE(2752), 1, + sym_scoped_identifier, + STATE(2987), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3406), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1282), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3696), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3694), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127944,37 +128554,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_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, - [14377] = 5, + [14104] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3700), 1, + anon_sym_move, + STATE(486), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127990,13 +128595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 31, - anon_sym_SEMI, + ACTIONS(3440), 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, @@ -128018,28 +128619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [14438] = 6, + [14179] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3722), 1, - anon_sym_LBRACE, - STATE(1280), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 16, + ACTIONS(3704), 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, @@ -128049,12 +128644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3498), 29, + ACTIONS(3702), 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, @@ -128077,17 +128673,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14501] = 5, + [14240] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3236), 1, + anon_sym_fn, + ACTIONS(3706), 1, + sym_identifier, + ACTIONS(3708), 1, + anon_sym_LPAREN, + ACTIONS(3712), 1, + anon_sym_COLON_COLON, + ACTIONS(3714), 1, + anon_sym_default, + ACTIONS(3716), 1, + anon_sym_for, + ACTIONS(3722), 1, + sym_metavariable, + STATE(1611), 1, + sym_scoped_type_identifier, + STATE(1625), 1, + sym_for_lifetimes, + STATE(1683), 1, + sym_generic_type, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3641), 1, + sym_function_modifiers, + STATE(3678), 1, + sym_scoped_identifier, + STATE(3696), 1, + sym_generic_type_with_turbofish, + STATE(3702), 1, + sym_bracketed_type, + ACTIONS(3718), 2, + anon_sym_gen, + anon_sym_union, + STATE(1285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3720), 3, + sym_self, + sym_super, + sym_crate, + STATE(1762), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3710), 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, + [14343] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 7, + ACTIONS(2686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128095,7 +128769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2834), 39, + ACTIONS(2688), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128135,23 +128809,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14562] = 5, + [14404] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2994), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - 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(3396), 1, + anon_sym_if, + ACTIONS(3668), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3730), 1, sym_metavariable, - ACTIONS(2996), 39, + STATE(2827), 1, + sym_scoped_identifier, + STATE(3007), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3394), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1287), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3728), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3726), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128169,46 +128878,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14623] = 6, + [14497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(1283), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(3466), 16, + ACTIONS(3734), 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, @@ -128218,12 +128905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3468), 29, + ACTIONS(3732), 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, @@ -128246,73 +128934,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14686] = 5, + [14558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2908), 7, + ACTIONS(3738), 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(3736), 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(2910), 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, - [14747] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128320,7 +129009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2692), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128360,15 +129049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14808] = 5, + [14680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(2698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128376,7 +129065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(2700), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128416,15 +129105,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14869] = 5, + [14741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(2702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128432,7 +129121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(2704), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128472,96 +129161,39 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14930] = 5, + [14802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(3388), 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(3390), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1836), 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, - [14991] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1289), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3494), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3492), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128573,82 +129205,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [15052] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1290), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2998), 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(3000), 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, - [15113] = 5, + [14863] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + ACTIONS(3744), 1, + anon_sym_DASH_GT, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128664,7 +129243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 31, + ACTIONS(3740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128692,19 +129271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15174] = 5, + [14926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(2706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128712,7 +129290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(2708), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128752,15 +129330,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15235] = 5, + [14987] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128776,7 +129356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1587), 31, + ACTIONS(3513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128784,7 +129364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128808,15 +129387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15296] = 5, + [15050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(2710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128824,7 +129403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(2712), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128864,31 +129443,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15357] = 5, + [15111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2714), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3552), 31, + ACTIONS(2716), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128906,29 +129477,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [15418] = 5, + [15172] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, + ACTIONS(3519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128944,7 +129525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 31, + ACTIONS(3517), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128972,78 +129553,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15479] = 6, + [15235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3738), 1, - anon_sym_DASH_GT, - STATE(1297), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3736), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_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), 30, + ACTIONS(2718), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15542] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2720), 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, + [15296] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3750), 1, anon_sym_DASH_GT, - STATE(1298), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(3742), 15, + ACTIONS(3748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129059,7 +129638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3740), 30, + ACTIONS(3746), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129090,69 +129669,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15605] = 6, + [15359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3750), 1, - anon_sym_DASH_GT, - STATE(1299), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3746), 30, + ACTIONS(2722), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15668] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2724), 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, + [15420] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + ACTIONS(3756), 1, + anon_sym_DASH_GT, + STATE(1303), 2, sym_line_comment, sym_block_comment, ACTIONS(3754), 15, @@ -129171,7 +129751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 31, + ACTIONS(3752), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129199,19 +129779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15729] = 5, + [15483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(2374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129219,7 +129798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(2376), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129259,15 +129838,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15790] = 5, + [15544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129275,7 +129854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2728), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129315,15 +129894,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15851] = 5, + [15605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2276), 7, + ACTIONS(2730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129331,7 +129910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2278), 39, + ACTIONS(2732), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129371,15 +129950,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15912] = 5, + [15666] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + ACTIONS(3758), 1, + anon_sym_else, + STATE(1475), 1, + sym_else_clause, + STATE(1307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1407), 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(1405), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [15731] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2280), 7, + ACTIONS(2390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129387,7 +130024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2282), 39, + ACTIONS(2392), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129427,15 +130064,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15973] = 5, + [15792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(3758), 7, + ACTIONS(2394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129443,7 +130080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3756), 39, + ACTIONS(2396), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129483,15 +130120,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16034] = 5, + [15853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2284), 7, + ACTIONS(2398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129499,7 +130136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2286), 39, + ACTIONS(2400), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129539,15 +130176,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16095] = 5, + [15914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2288), 7, + ACTIONS(2646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129555,7 +130192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2290), 39, + ACTIONS(2648), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129595,15 +130232,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16156] = 5, + [15975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 7, + ACTIONS(2650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129611,7 +130248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2882), 39, + ACTIONS(2652), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129651,15 +130288,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16217] = 5, + [16036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2884), 7, + ACTIONS(2654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129667,7 +130304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2886), 39, + ACTIONS(2656), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129707,15 +130344,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16278] = 5, + [16097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129723,7 +130360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2294), 39, + ACTIONS(1928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129763,15 +130400,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16339] = 5, + [16158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(3018), 7, + ACTIONS(2064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129779,7 +130416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3020), 39, + ACTIONS(2066), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129819,72 +130456,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16400] = 6, + [16219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3588), 1, - anon_sym_COLON_COLON, - STATE(1312), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2068), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3528), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2070), 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, + [16280] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2072), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16463] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2074), 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, + [16341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2888), 7, + ACTIONS(2076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129892,7 +130584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2890), 39, + ACTIONS(2078), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129932,15 +130624,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16524] = 5, + [16402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(2084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129948,7 +130640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(2086), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129988,15 +130680,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16585] = 5, + [16463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2892), 7, + ACTIONS(2144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130004,7 +130696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2894), 39, + ACTIONS(2146), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130044,15 +130736,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16646] = 5, + [16524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(2148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130060,7 +130752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(2150), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130100,15 +130792,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16707] = 5, + [16585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 7, + ACTIONS(2162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130116,7 +130808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2898), 39, + ACTIONS(2164), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130156,15 +130848,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16768] = 5, + [16646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 7, + ACTIONS(2174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130172,7 +130864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2902), 39, + ACTIONS(2176), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130212,15 +130904,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16829] = 5, + [16707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1324), 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, + [16768] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 7, + ACTIONS(2734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130228,7 +130976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2298), 39, + ACTIONS(2736), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130268,12 +131016,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16890] = 5, + [16829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, ACTIONS(3762), 15, @@ -130320,19 +131068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16951] = 5, + [16890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 7, + ACTIONS(2738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130340,7 +131088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2906), 39, + ACTIONS(2740), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130380,15 +131128,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17012] = 5, + [16951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130396,7 +131144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2744), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130436,15 +131184,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17073] = 5, + [17012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2912), 7, + ACTIONS(2746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130452,7 +131200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2914), 39, + ACTIONS(2748), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130492,15 +131240,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17134] = 5, + [17073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(2750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130508,7 +131256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(2752), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130548,15 +131296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17195] = 5, + [17134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(3038), 7, + ACTIONS(2754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130564,7 +131312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3040), 39, + ACTIONS(2756), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130604,15 +131352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17256] = 5, + [17195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 7, + ACTIONS(2758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130620,7 +131368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2918), 39, + ACTIONS(2760), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130660,71 +131408,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17317] = 5, + [17256] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + ACTIONS(3768), 1, + anon_sym_DASH_GT, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 7, + ACTIONS(3766), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3764), 30, anon_sym_SEMI, - anon_sym_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(3044), 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, - [17378] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130732,7 +131481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2764), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130772,17 +131521,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17439] = 6, + [17380] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3768), 1, + ACTIONS(3774), 1, anon_sym_DASH_GT, - STATE(1329), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130798,7 +131547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 30, + ACTIONS(3770), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130829,127 +131578,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17502] = 5, + [17443] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + ACTIONS(3780), 1, + anon_sym_DASH_GT, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1820), 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, - [17563] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1331), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2502), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3776), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2504), 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, - [17624] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 7, + ACTIONS(2766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130957,7 +131651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2302), 39, + ACTIONS(2768), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130997,15 +131691,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17685] = 5, + [17567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(2770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131013,7 +131707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(2772), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131053,15 +131747,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17746] = 5, + [17628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(2782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131069,7 +131763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(2784), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131109,127 +131803,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17807] = 5, + [17689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3770), 31, - anon_sym_SEMI, - anon_sym_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, - [17868] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1336), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3776), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3774), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17929] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131237,7 +131819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2792), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131277,15 +131859,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17990] = 5, + [17750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 7, + ACTIONS(2798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131293,7 +131875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2306), 39, + ACTIONS(2800), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131333,15 +131915,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18051] = 5, + [17811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 7, + ACTIONS(2802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131349,7 +131931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2310), 39, + ACTIONS(2804), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131389,15 +131971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18112] = 5, + [17872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 7, + ACTIONS(2806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131405,7 +131987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2314), 39, + ACTIONS(2808), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131445,15 +132027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18173] = 5, + [17933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131461,7 +132043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2404), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131501,15 +132083,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18234] = 5, + [17994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(2810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131517,7 +132099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2518), 39, + ACTIONS(2812), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131557,15 +132139,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18295] = 5, + [18055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131573,7 +132155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(2816), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131613,15 +132195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18356] = 5, + [18116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131629,7 +132211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2522), 39, + ACTIONS(2820), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131669,31 +132251,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18417] = 5, + [18177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(3564), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2406), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3562), 31, + ACTIONS(2408), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131711,29 +132285,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [18478] = 5, + [18238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131741,7 +132323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2824), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131781,15 +132363,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18539] = 5, + [18299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2584), 7, + ACTIONS(2826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131797,7 +132379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2586), 39, + ACTIONS(2828), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131837,15 +132419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18600] = 5, + [18360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131853,7 +132435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(2832), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131893,15 +132475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18661] = 5, + [18421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131909,7 +132491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(2416), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131949,15 +132531,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18722] = 5, + [18482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2592), 7, + ACTIONS(2486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131965,7 +132547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2594), 39, + ACTIONS(2488), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132005,15 +132587,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18783] = 5, + [18543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132021,7 +132603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(2500), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132061,15 +132643,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18844] = 5, + [18604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132077,7 +132659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(2836), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132117,15 +132699,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18905] = 5, + [18665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(2838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132133,7 +132715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(2840), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132173,15 +132755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18966] = 5, + [18726] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, + ACTIONS(2842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132189,7 +132771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2322), 39, + ACTIONS(2844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132229,15 +132811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19027] = 5, + [18787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 7, + ACTIONS(2846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132245,7 +132827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2326), 39, + ACTIONS(2848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132285,15 +132867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19088] = 5, + [18848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132301,7 +132883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(2852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132341,15 +132923,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19149] = 5, + [18909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132357,7 +132939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132397,15 +132979,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19210] = 5, + [18970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132413,7 +132995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132453,15 +133035,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19271] = 5, + [19031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132469,7 +133051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132509,15 +133091,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19332] = 5, + [19092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132525,7 +133107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132565,28 +133147,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19393] = 5, + [19153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2870), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(2274), 34, + ACTIONS(2872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132607,29 +133184,34 @@ 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, - [19454] = 5, + [19214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132637,7 +133219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(2876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132677,15 +133259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19515] = 5, + [19275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132693,7 +133275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(2880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132733,15 +133315,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19576] = 5, + [19336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132749,7 +133331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132789,15 +133371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19637] = 5, + [19397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132805,7 +133387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132845,15 +133427,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19698] = 5, + [19458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132861,7 +133443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2510), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132901,15 +133483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19759] = 5, + [19519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(2586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132917,7 +133499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 39, + ACTIONS(2588), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132957,71 +133539,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19820] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1368), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2516), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2518), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19881] = 5, + [19580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2600), 7, + ACTIONS(2890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133029,7 +133555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2602), 39, + ACTIONS(2892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133069,15 +133595,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19942] = 5, + [19641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(2894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133085,7 +133611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(2896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133125,15 +133651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20003] = 5, + [19702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 7, + ACTIONS(2898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133141,7 +133667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2330), 39, + ACTIONS(2900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133181,15 +133707,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20064] = 5, + [19763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133197,7 +133723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133237,15 +133763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20125] = 5, + [19824] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(2906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133253,7 +133779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(2908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133293,71 +133819,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20186] = 5, + [19885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(3784), 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(3782), 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(1928), 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, - [20247] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(2634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133365,7 +133891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(2636), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133405,15 +133931,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20308] = 5, + [20007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3788), 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(3786), 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, + [20068] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2604), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133421,7 +134003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2606), 39, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133461,15 +134043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20369] = 5, + [20129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(2930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133477,7 +134059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(2932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133517,15 +134099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20430] = 5, + [20190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 7, + ACTIONS(2638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133533,7 +134115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2610), 39, + ACTIONS(2640), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133573,15 +134155,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20491] = 5, + [20251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133589,7 +134171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133629,15 +134211,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20552] = 5, + [20312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 7, + ACTIONS(2938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133645,7 +134227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2334), 39, + ACTIONS(2940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133685,15 +134267,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20613] = 5, + [20373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(2642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133701,7 +134283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(2644), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133741,15 +134323,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20674] = 5, + [20434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133757,7 +134339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2338), 39, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133797,15 +134379,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20735] = 5, + [20495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133813,7 +134395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2342), 39, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133853,15 +134435,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20796] = 5, + [20556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133869,7 +134451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2618), 39, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133909,15 +134491,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20857] = 5, + [20617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(2954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133925,7 +134507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133965,15 +134547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20918] = 5, + [20678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2620), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133981,7 +134563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2622), 39, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134021,15 +134603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20979] = 5, + [20739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 7, + ACTIONS(2962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134037,7 +134619,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, @@ -134077,15 +134659,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21040] = 5, + [20800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134093,7 +134675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134133,15 +134715,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21101] = 5, + [20861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + ACTIONS(3794), 1, + anon_sym_DASH_GT, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(3792), 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(3790), 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, + [20924] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134149,7 +134788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134189,15 +134828,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21162] = 5, + [20985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134205,7 +134844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(2984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134245,15 +134884,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21223] = 5, + [21046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 7, + ACTIONS(2986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134261,7 +134900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2350), 39, + ACTIONS(2988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134301,15 +134940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21284] = 5, + [21107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134317,7 +134956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2626), 39, + ACTIONS(2992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134357,15 +134996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21345] = 5, + [21168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 7, + ACTIONS(2994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134373,7 +135012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2354), 39, + ACTIONS(2996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134413,15 +135052,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21406] = 5, + [21229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134429,7 +135068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(2672), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134469,15 +135108,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21467] = 5, + [21290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 7, + ACTIONS(2998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134485,7 +135124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2358), 39, + ACTIONS(3000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134525,15 +135164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21528] = 5, + [21351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 7, + ACTIONS(3002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134541,7 +135180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2362), 39, + ACTIONS(3004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134581,15 +135220,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21589] = 5, + [21412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 7, + ACTIONS(3006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134597,7 +135236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3048), 39, + ACTIONS(3008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134637,15 +135276,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21650] = 5, + [21473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2628), 7, + ACTIONS(2674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134653,7 +135292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2630), 39, + ACTIONS(2676), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134693,15 +135332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21711] = 5, + [21534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(3010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134709,7 +135348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2366), 39, + ACTIONS(3012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134749,15 +135388,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21772] = 5, + [21595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(2678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134765,7 +135404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2370), 39, + ACTIONS(2680), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134805,72 +135444,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21833] = 6, + [21656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1401), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3526), 29, + ACTIONS(2682), 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, - [21896] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2684), 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, + [21717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(2694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134878,7 +135516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2374), 39, + ACTIONS(2696), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134918,15 +135556,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21957] = 5, + [21778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2632), 7, + ACTIONS(2774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134934,7 +135572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2634), 39, + ACTIONS(2776), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134974,15 +135612,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22018] = 5, + [21839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(2778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134990,7 +135628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2378), 39, + ACTIONS(2780), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135030,15 +135668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22079] = 5, + [21900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135046,7 +135684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 39, + ACTIONS(2788), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135086,15 +135724,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22140] = 5, + [21961] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135102,7 +135740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 39, + ACTIONS(2912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135142,15 +135780,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22201] = 5, + [22022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2474), 7, + ACTIONS(2914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135158,7 +135796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2476), 39, + ACTIONS(2916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135198,15 +135836,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22262] = 5, + [22083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 7, + ACTIONS(2918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135214,7 +135852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2638), 39, + ACTIONS(2920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135254,15 +135892,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22323] = 5, + [22144] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 7, + ACTIONS(2922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135270,7 +135908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2480), 39, + ACTIONS(2924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135310,15 +135948,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22384] = 5, + [22205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2482), 7, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135326,7 +135964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2484), 39, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135366,15 +136004,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22445] = 5, + [22266] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2486), 7, + ACTIONS(3050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135382,7 +136020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2488), 39, + ACTIONS(3052), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135422,15 +136060,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22506] = 5, + [22327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135438,7 +136076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 39, + ACTIONS(1868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135478,15 +136116,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22567] = 5, + [22388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135494,7 +136132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 39, + ACTIONS(1872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135534,15 +136172,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22628] = 5, + [22449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(2640), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135550,7 +136188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2642), 39, + ACTIONS(1948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135590,15 +136228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22689] = 5, + [22510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(2644), 7, + ACTIONS(2036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135606,7 +136244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2646), 39, + ACTIONS(2038), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135646,15 +136284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22750] = 5, + [22571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 7, + ACTIONS(2040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135662,7 +136300,532 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(2042), 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, + [22632] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2044), 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(2046), 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, + [22693] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1422), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 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(2050), 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, + [22754] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2052), 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(2054), 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, + [22815] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2056), 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(2058), 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, + [22876] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3014), 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(3016), 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, + [22937] = 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(3018), 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(3020), 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, + [22998] = 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(3022), 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(3024), 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, + [23059] = 26, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1147), 1, + anon_sym_fn, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3272), 1, + anon_sym_for, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(3796), 1, + sym_identifier, + STATE(1652), 1, + sym_for_lifetimes, + STATE(2026), 1, + sym_scoped_type_identifier, + STATE(2040), 1, + sym_generic_type, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(3812), 1, + sym_function_modifiers, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(2064), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3634), 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, + [23162] = 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(2080), 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(2082), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135702,19 +136865,1196 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22811] = 7, + [23223] = 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(2140), 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(2142), 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, + [23284] = 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(3800), 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(3798), 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, + [23345] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1432), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2582), 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(2584), 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, + [23406] = 23, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3358), 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(2559), 1, + sym_where_predicate, + STATE(2796), 1, + sym_scoped_type_identifier, + STATE(3036), 1, + sym_generic_type, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + STATE(1433), 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, + STATE(3215), 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, + [23502] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3804), 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(3802), 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, + [23562] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1435), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 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(3806), 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, + [23622] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1436), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3812), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3810), 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, + [23682] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3816), 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(3814), 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, + [23742] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1438), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 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(3818), 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, + [23802] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(955), 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(957), 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, + [23862] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1439), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1437), 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, + [23922] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1441), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1477), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1475), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23982] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3824), 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(3822), 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, + [24042] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3828), 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(3826), 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, + [24102] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1444), 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(3830), 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, + [24162] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(3834), 1, + anon_sym_COLON_COLON, + STATE(1445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 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(1457), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [24226] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1446), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3838), 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(3836), 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, + [24286] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3842), 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(3840), 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, + [24346] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3846), 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(3844), 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, + [24406] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1449), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3852), 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(3848), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24472] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1450), 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, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_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), 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, + [24532] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1441), 1, - sym_label, - STATE(1417), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135730,7 +138070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 29, + ACTIONS(3862), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135758,486 +138098,73 @@ 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, - [22876] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1418), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2942), 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(2944), 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, - [22937] = 26, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1255), 1, - anon_sym_fn, - ACTIONS(1265), 1, - anon_sym_extern, - ACTIONS(3240), 1, - anon_sym_for, - ACTIONS(3474), 1, - anon_sym_LPAREN, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3628), 1, - anon_sym_default, - ACTIONS(3784), 1, - sym_identifier, - STATE(1619), 1, - sym_for_lifetimes, - STATE(2011), 1, - sym_scoped_type_identifier, - STATE(2020), 1, - sym_generic_type, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(2467), 1, - sym_extern_modifier, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, - sym_scoped_identifier, - STATE(3752), 1, - sym_generic_type_with_turbofish, - STATE(3776), 1, - sym_function_modifiers, - ACTIONS(3484), 2, - anon_sym_gen, - anon_sym_union, - STATE(1419), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1249), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - sym_self, - sym_super, - sym_crate, - STATE(2068), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3626), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [23040] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1420), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2648), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2650), 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, - [23101] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1421), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2950), 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(2952), 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, - [23162] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1422), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2954), 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(2956), 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, - [23223] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1423), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2958), 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(2960), 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, - [23284] = 5, + [24592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3868), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2964), 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, - [23345] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1425), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2876), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3866), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2878), 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, - [23406] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136253,7 +138180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3786), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136284,15 +138211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23466] = 5, + [24712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136308,7 +138235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3790), 30, + ACTIONS(3870), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136339,70 +138266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23526] = 5, + [24772] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3796), 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(3794), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3854), 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_COMMA, - anon_sym_SQUOTE, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, anon_sym_as, - anon_sym_else, - [23586] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(3876), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136416,17 +138296,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(3798), 30, + ACTIONS(3874), 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, @@ -136447,90 +138324,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, - [23646] = 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(3324), 1, - anon_sym_SQUOTE, - ACTIONS(3470), 1, - sym_identifier, - ACTIONS(3474), 1, - anon_sym_LPAREN, - ACTIONS(3476), 1, - anon_sym_STAR, - ACTIONS(3480), 1, - anon_sym_AMP, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3486), 1, - anon_sym_for, - ACTIONS(3490), 1, - sym_metavariable, - STATE(2528), 1, - sym_where_predicate, - STATE(2656), 1, - sym_scoped_type_identifier, - STATE(2907), 1, - sym_generic_type, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, - sym_scoped_identifier, - STATE(3752), 1, - sym_generic_type_with_turbofish, - STATE(1430), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3484), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3488), 3, - sym_self, - sym_super, - sym_crate, - STATE(3160), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3478), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [23742] = 5, + [24840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136546,7 +138349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(995), 30, + ACTIONS(3475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136577,15 +138380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23802] = 5, + [24900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136601,7 +138404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 30, + ACTIONS(3880), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136632,18 +138435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23862] = 6, + [24960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3808), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1433), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136659,12 +138459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 28, + ACTIONS(3884), 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, @@ -136686,17 +138487,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, - [23924] = 5, + [25020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(1053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136712,7 +138514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3812), 30, + ACTIONS(1055), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136743,74 +138545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23984] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - STATE(1435), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3820), 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(3816), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [24052] = 5, + [25080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3830), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136826,7 +138569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3828), 30, + ACTIONS(3888), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136857,15 +138600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24112] = 5, + [25140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 15, + ACTIONS(3894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136881,7 +138624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3832), 30, + ACTIONS(3892), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136912,15 +138655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24172] = 5, + [25200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136936,7 +138679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 30, + ACTIONS(3896), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136967,18 +138710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24232] = 6, + [25260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1439), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(1495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136994,12 +138734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 28, + ACTIONS(1493), 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, @@ -137021,17 +138762,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, - [24294] = 5, + [25320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137047,7 +138789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 30, + ACTIONS(3900), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137078,15 +138820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24354] = 5, + [25380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(1503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137102,7 +138844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3842), 30, + ACTIONS(1501), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137133,15 +138875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24414] = 5, + [25440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(1013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137157,7 +138899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3846), 30, + ACTIONS(1015), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137188,15 +138930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24474] = 5, + [25500] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3906), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137210,17 +138958,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(3850), 30, + ACTIONS(3904), 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, @@ -137243,21 +138988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24534] = 8, + [25566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - STATE(1444), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 14, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137271,14 +139010,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(3854), 28, + ACTIONS(1509), 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, @@ -137301,15 +139043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24600] = 5, + [25626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137325,7 +139067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 30, + ACTIONS(1513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137356,15 +139098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24660] = 5, + [25686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(1523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137380,7 +139122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, + ACTIONS(1521), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137411,15 +139153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24720] = 5, + [25746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(1549), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137435,7 +139177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(1547), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137466,15 +139208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24780] = 5, + [25806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(1535), 15, + ACTIONS(951), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137490,7 +139232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1533), 30, + ACTIONS(953), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137521,15 +139263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24840] = 5, + [25866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137545,7 +139287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, + ACTIONS(3908), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137576,15 +139318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24900] = 5, + [25926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137600,7 +139342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3912), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137631,15 +139373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24960] = 5, + [25986] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137655,7 +139397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137686,15 +139428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25020] = 5, + [26046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(1503), 15, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137710,7 +139452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1501), 30, + ACTIONS(3916), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137741,15 +139483,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25080] = 5, + [26106] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, + ACTIONS(3922), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137763,17 +139511,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(1505), 30, + ACTIONS(3920), 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, @@ -137796,15 +139541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25140] = 5, + [26172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137820,7 +139565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3924), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137851,15 +139596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25200] = 5, + [26232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3930), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137875,7 +139620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 30, + ACTIONS(3928), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137906,15 +139651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25260] = 5, + [26292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137930,7 +139675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137961,15 +139706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25320] = 5, + [26352] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137985,7 +139730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 30, + ACTIONS(3932), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138016,15 +139761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25380] = 5, + [26412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138040,7 +139785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 30, + ACTIONS(1441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138071,15 +139816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25440] = 5, + [26472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 15, + ACTIONS(3938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138095,7 +139840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 30, + ACTIONS(3936), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138126,15 +139871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25500] = 5, + [26532] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(3942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138150,7 +139895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 30, + ACTIONS(3940), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138181,15 +139926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25560] = 5, + [26592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138205,7 +139950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3678), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138236,15 +139981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25620] = 5, + [26652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(1451), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138260,7 +140005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1449), 30, + ACTIONS(3944), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138291,15 +140036,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25680] = 5, + [26712] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3948), 1, + anon_sym_BANG, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + ACTIONS(3952), 1, + anon_sym_move, + STATE(1812), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138315,14 +140074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, - anon_sym_SEMI, + ACTIONS(3440), 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, @@ -138342,19 +140097,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, - [25740] = 5, + [26786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138370,7 +140122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(1445), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138401,15 +140153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25800] = 5, + [26846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138425,7 +140177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138456,15 +140208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25860] = 5, + [26906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138480,7 +140232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138511,15 +140263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25920] = 5, + [26966] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138535,7 +140287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 30, + ACTIONS(3962), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138566,15 +140318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25980] = 5, + [27026] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138590,7 +140342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 30, + ACTIONS(3966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138621,15 +140373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26040] = 5, + [27086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138645,7 +140397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3878), 30, + ACTIONS(3970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138676,15 +140428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26100] = 5, + [27146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138700,7 +140452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 30, + ACTIONS(1539), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138731,15 +140483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26160] = 5, + [27206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138755,7 +140507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 30, + ACTIONS(1449), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138786,15 +140538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26220] = 5, + [27266] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138810,7 +140562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, + ACTIONS(3974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138841,15 +140593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26280] = 5, + [27326] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138865,7 +140617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 30, + ACTIONS(3978), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138896,15 +140648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26340] = 5, + [27386] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + ACTIONS(3984), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138920,13 +140675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 30, + ACTIONS(3982), 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, @@ -138948,18 +140702,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, - [26400] = 5, + [27448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138975,7 +140728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 30, + ACTIONS(3988), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139006,15 +140759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26460] = 5, + [27508] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139030,7 +140783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 30, + ACTIONS(977), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139061,15 +140814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26520] = 5, + [27568] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139085,13 +140842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, + ACTIONS(3440), 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, @@ -139113,18 +140869,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26580] = 5, + [27632] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3994), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139138,17 +140899,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(3898), 30, + ACTIONS(3992), 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, @@ -139171,15 +140929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26640] = 5, + [27698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3998), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139195,7 +140953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(3996), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139226,15 +140984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26700] = 5, + [27758] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(4002), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139250,7 +141008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(4000), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139281,15 +141039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26760] = 5, + [27818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 15, + ACTIONS(4006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139305,7 +141063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3528), 30, + ACTIONS(4004), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139336,15 +141094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26820] = 5, + [27878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(4010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139360,7 +141118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 30, + ACTIONS(4008), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139391,15 +141149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26880] = 5, + [27938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3916), 15, + ACTIONS(4014), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139415,7 +141173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3914), 30, + ACTIONS(4012), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139446,15 +141204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26940] = 5, + [27998] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3920), 15, + ACTIONS(4018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139470,7 +141228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3918), 30, + ACTIONS(4016), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139501,15 +141259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27000] = 5, + [28058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139525,7 +141283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3922), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139556,15 +141314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27060] = 5, + [28118] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(985), 15, + ACTIONS(4022), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139580,7 +141338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(987), 30, + ACTIONS(4020), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139611,15 +141369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27120] = 5, + [28178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139635,7 +141393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1043), 30, + ACTIONS(3509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139666,15 +141424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27180] = 5, + [28238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139690,7 +141448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139721,15 +141479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27240] = 5, + [28298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139745,7 +141503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 30, + ACTIONS(4024), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139776,15 +141534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27300] = 5, + [28358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139800,7 +141558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139831,15 +141589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27360] = 5, + [28418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139855,7 +141613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 30, + ACTIONS(3513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139886,15 +141644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27420] = 5, + [28478] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + ACTIONS(4028), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139910,13 +141671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 30, + ACTIONS(3982), 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, @@ -139938,18 +141698,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, - [27480] = 5, + [28540] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139965,7 +141724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, + ACTIONS(4030), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139996,15 +141755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27540] = 5, + [28600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140020,7 +141779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 30, + ACTIONS(3982), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140051,15 +141810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27600] = 5, + [28660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(963), 15, + ACTIONS(3519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140075,7 +141834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(965), 30, + ACTIONS(3517), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140106,15 +141865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27660] = 5, + [28720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140130,7 +141889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1435), 30, + ACTIONS(1481), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140161,15 +141920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27720] = 5, + [28780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(4036), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140185,7 +141944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 30, + ACTIONS(4034), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140216,15 +141975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27780] = 5, + [28840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140240,7 +141999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 30, + ACTIONS(1047), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140271,15 +142030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27840] = 5, + [28900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(4040), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140295,7 +142054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 30, + ACTIONS(4038), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140326,15 +142085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27900] = 5, + [28960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(4044), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140350,7 +142109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 30, + ACTIONS(4042), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140381,15 +142140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27960] = 5, + [29020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3948), 15, + ACTIONS(4048), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140405,7 +142164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3946), 30, + ACTIONS(4046), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140436,15 +142195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28020] = 5, + [29080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140460,7 +142219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 30, + ACTIONS(1505), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140491,15 +142250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28080] = 5, + [29140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140515,7 +142274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 30, + ACTIONS(1531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140546,15 +142305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28140] = 5, + [29200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(1465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140570,7 +142329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 30, + ACTIONS(1463), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140601,15 +142360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28200] = 5, + [29260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1505), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 15, + ACTIONS(4052), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140625,7 +142384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1445), 30, + ACTIONS(4050), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140656,15 +142415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28260] = 5, + [29320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(1529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140680,7 +142439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 30, + ACTIONS(1527), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140711,15 +142470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28320] = 5, + [29380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140735,7 +142494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140766,15 +142525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28380] = 5, + [29440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1508), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(4056), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140790,7 +142549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 30, + ACTIONS(4054), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140821,15 +142580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28440] = 5, + [29500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(4060), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140845,7 +142604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 30, + ACTIONS(4058), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140876,15 +142635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28500] = 5, + [29560] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(4064), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140900,7 +142659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 30, + ACTIONS(4062), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140931,15 +142690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28560] = 5, + [29620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(4068), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140955,7 +142714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 30, + ACTIONS(4066), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140986,15 +142745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28620] = 5, + [29680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(4072), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141010,7 +142769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 30, + ACTIONS(4070), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141041,15 +142800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28680] = 5, + [29740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141065,7 +142824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 30, + ACTIONS(1471), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141096,15 +142855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28740] = 5, + [29800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, + ACTIONS(4076), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141120,7 +142879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3990), 30, + ACTIONS(4074), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141151,15 +142910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28800] = 5, + [29860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141175,7 +142934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3994), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141206,15 +142965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28860] = 5, + [29920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, + ACTIONS(4080), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141230,7 +142989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3998), 30, + ACTIONS(4078), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141261,15 +143020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28920] = 5, + [29980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(4084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141285,7 +143044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, + ACTIONS(4082), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141316,15 +143075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28980] = 5, + [30040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(4088), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141340,7 +143099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4002), 30, + ACTIONS(4086), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141371,15 +143130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29040] = 5, + [30100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141395,7 +143154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 30, + ACTIONS(1433), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141426,15 +143185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29100] = 5, + [30160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(1553), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141450,7 +143209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 30, + ACTIONS(1551), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141481,15 +143240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29160] = 5, + [30220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(1021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141505,7 +143264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 30, + ACTIONS(1023), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141536,15 +143295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29220] = 5, + [30280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(1545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141560,7 +143319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 30, + ACTIONS(1543), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141591,15 +143350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29280] = 5, + [30340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141615,7 +143374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(991), 30, + ACTIONS(1497), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141646,15 +143405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29340] = 5, + [30400] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(1469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141670,7 +143429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 30, + ACTIONS(1467), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141701,15 +143460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29400] = 5, + [30460] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, + ACTIONS(4092), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141725,7 +143484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4022), 30, + ACTIONS(4090), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141756,130 +143515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29460] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_BANG, - ACTIONS(3430), 1, - anon_sym_COLON_COLON, - STATE(1526), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3424), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [29524] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - STATE(1527), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4028), 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(4026), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29590] = 5, + [30520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141895,7 +143539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, + ACTIONS(1517), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141926,15 +143570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29650] = 5, + [30580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(4032), 15, + ACTIONS(4096), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141950,7 +143594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4030), 30, + ACTIONS(4094), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141981,15 +143625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29710] = 5, + [30640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 15, + ACTIONS(4100), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142005,7 +143649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4034), 30, + ACTIONS(4098), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142033,80 +143677,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, - [29770] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(4038), 1, - anon_sym_BANG, - ACTIONS(4040), 1, - anon_sym_COLON_COLON, - ACTIONS(4042), 1, - anon_sym_move, - STATE(1794), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3424), 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_SQUOTE, anon_sym_as, - [29844] = 5, + anon_sym_else, + [30700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(4046), 15, + ACTIONS(4104), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142122,7 +143704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4044), 30, + ACTIONS(4102), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142153,21 +143735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29904] = 8, + [30760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - STATE(1533), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 14, + ACTIONS(4108), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142181,14 +143757,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(4048), 28, + ACTIONS(4106), 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, @@ -142211,21 +143790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29970] = 8, + [30820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - STATE(1534), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(4054), 14, + ACTIONS(4112), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142239,14 +143812,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(4052), 28, + ACTIONS(4110), 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, @@ -142269,15 +143845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30036] = 5, + [30880] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4058), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142293,13 +143871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4056), 30, + ACTIONS(1457), 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, @@ -142321,18 +143898,19 @@ 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, - [30096] = 5, + [30941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + ACTIONS(3446), 1, + anon_sym_COLON_COLON, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4062), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142348,13 +143926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4060), 30, + ACTIONS(3440), 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, @@ -142376,18 +143953,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, - [30156] = 5, + [31002] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3450), 1, + anon_sym_move, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + STATE(1468), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(4066), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142403,14 +143991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4064), 30, - anon_sym_SEMI, + ACTIONS(3440), 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, @@ -142430,19 +144014,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30216] = 5, + [31073] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1538), 2, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3450), 1, + anon_sym_move, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + STATE(1468), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4070), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142458,14 +144049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4068), 30, - anon_sym_SEMI, + ACTIONS(3440), 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, @@ -142485,45 +144072,273 @@ 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, - [30276] = 5, + [31142] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4074), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4118), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [31232] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4148), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4072), 30, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4146), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, 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, + [31322] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3664), 1, + sym_identifier, + ACTIONS(3668), 1, + anon_sym_COLON_COLON, + ACTIONS(3672), 1, + sym_metavariable, + STATE(2830), 1, + sym_scoped_identifier, + STATE(3090), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3670), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3666), 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, + [31408] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 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(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4058), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142534,29 +144349,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [31500] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3668), 1, + anon_sym_COLON_COLON, + ACTIONS(3692), 1, + sym_identifier, + ACTIONS(3698), 1, + sym_metavariable, + STATE(2752), 1, + sym_scoped_identifier, + STATE(2987), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3696), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3694), 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, + [31586] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3668), 1, + anon_sym_COLON_COLON, + ACTIONS(3724), 1, + sym_identifier, + ACTIONS(3730), 1, + sym_metavariable, + STATE(2827), 1, + sym_scoped_identifier, + STATE(3007), 1, + sym__literal_pattern, + STATE(3629), 1, + sym_bracketed_type, + STATE(3646), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3728), 3, + sym_self, + sym_super, + sym_crate, + STATE(2408), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3726), 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, + [31672] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4158), 1, + anon_sym_COLON_COLON, + STATE(1566), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 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(4154), 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, + [31732] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1567), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 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, + ACTIONS(3936), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [30336] = 7, + ACTIONS(4150), 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, + [31824] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4163), 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(4161), 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, + [31882] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4076), 1, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(3578), 1, anon_sym_COLON_COLON, - STATE(1540), 2, + ACTIONS(4165), 1, + anon_sym_BANG, + STATE(1481), 1, + sym_field_initializer_list, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142572,12 +144692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 28, + ACTIONS(1457), 24, 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, @@ -142598,73 +144716,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_as, - anon_sym_else, - [30400] = 5, + [31948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(4080), 15, - anon_sym_PLUS, + ACTIONS(4169), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4078), 30, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4167), 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] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4173), 10, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [30460] = 5, + sym_metavariable, + ACTIONS(4171), 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, + [32064] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1542), 2, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(2098), 1, + anon_sym_COLON_COLON, + ACTIONS(3416), 1, + sym_identifier, + ACTIONS(3426), 1, + sym_metavariable, + STATE(2169), 1, + sym_scoped_identifier, + STATE(2179), 1, + sym__literal_pattern, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(4084), 15, + ACTIONS(1165), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3424), 3, + sym_self, + sym_super, + sym_crate, + STATE(2112), 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, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [32150] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(2098), 1, + anon_sym_COLON_COLON, + ACTIONS(3404), 1, + sym_identifier, + ACTIONS(3414), 1, + sym_metavariable, + STATE(2171), 1, + sym_scoped_identifier, + STATE(2216), 1, + sym__literal_pattern, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(1573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1165), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3412), 3, + sym_self, + sym_super, + sym_crate, + STATE(2112), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3410), 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, + [32236] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1117), 1, + anon_sym_DASH, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(1177), 1, + sym__raw_string_literal_start, + ACTIONS(2098), 1, + anon_sym_COLON_COLON, + ACTIONS(3392), 1, + sym_identifier, + ACTIONS(3402), 1, + sym_metavariable, + STATE(2168), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym__literal_pattern, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1169), 2, + anon_sym_true, + anon_sym_false, + STATE(1574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1165), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3400), 3, + sym_self, + sym_super, + sym_crate, + STATE(2112), 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, + [32322] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4175), 1, + anon_sym_LPAREN, + STATE(1575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 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(4154), 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, + [32382] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4180), 1, + anon_sym_BANG, + ACTIONS(4182), 1, + anon_sym_COLON_COLON, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1661), 1, + sym_type_arguments, + STATE(1688), 1, + sym_parameters, + STATE(1576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3454), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142675,19 +145109,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(4082), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3452), 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, @@ -142699,53 +145130,73 @@ 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, - [30520] = 5, + [32452] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1473), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1475), 30, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1577), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3912), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142756,51 +145207,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_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [30580] = 5, + [32544] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1544), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4088), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4086), 30, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4186), 17, 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, @@ -142811,25 +145274,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [30640] = 5, + [32634] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + ACTIONS(3434), 1, + anon_sym_BANG, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, + anon_sym_COLON_COLON, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1661), 1, + sym_type_arguments, + STATE(1688), 1, + sym_parameters, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 15, + ACTIONS(3432), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142840,19 +145307,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(979), 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, @@ -142864,39 +145328,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30700] = 11, + [32704] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_BANG, - ACTIONS(3432), 1, - anon_sym_SQUOTE, ACTIONS(3434), 1, - anon_sym_move, - ACTIONS(4090), 1, + anon_sym_BANG, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4182), 1, anon_sym_COLON_COLON, - STATE(1450), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(1546), 2, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1661), 1, + sym_type_arguments, + STATE(1688), 1, + sym_parameters, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(3460), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142907,15 +145366,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(3424), 23, - anon_sym_LPAREN, + ACTIONS(3458), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142927,51 +145387,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [30771] = 6, + [32774] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - STATE(1547), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1473), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(399), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1475), 28, + STATE(1581), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 19, 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, @@ -142982,51 +145457,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_as, anon_sym_else, - [30832] = 6, + [32860] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_COLON_COLON, - STATE(1548), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3424), 28, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1582), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_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, @@ -143037,39 +145528,31 @@ 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, - [30893] = 10, + [32950] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_BANG, - ACTIONS(3434), 1, - anon_sym_move, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - STATE(1450), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(1549), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143078,13 +145561,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(3424), 24, + ACTIONS(3874), 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, @@ -143103,113 +145586,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [30962] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3638), 1, - sym_metavariable, - STATE(2754), 1, - sym_scoped_identifier, - STATE(2943), 1, - sym__literal_pattern, - STATE(3594), 1, - sym_bracketed_type, - STATE(3611), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1550), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3636), 3, - sym_self, - sym_super, - sym_crate, - STATE(2385), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3634), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [31048] = 15, + anon_sym_COMMA, + anon_sym_else, + [33018] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1551), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 4, + ACTIONS(3876), 6, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 25, + ACTIONS(3874), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143235,232 +145649,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31126] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3644), 1, - sym_identifier, - ACTIONS(3650), 1, - sym_metavariable, - STATE(2590), 1, - sym_scoped_identifier, - STATE(2889), 1, - sym__literal_pattern, - STATE(3594), 1, - sym_bracketed_type, - STATE(3611), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1552), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3648), 3, - sym_self, - sym_super, - sym_crate, - STATE(2385), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3646), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [31212] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1553), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4108), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4106), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31270] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1554), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4112), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4110), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [31328] = 19, + [33092] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4120), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1555), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4114), 19, + ACTIONS(3876), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 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, @@ -143471,70 +145701,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_COMMA, anon_sym_else, - [31414] = 22, + [33164] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4130), 1, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4132), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1556), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3930), 7, + ACTIONS(3876), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4126), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143545,59 +145763,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31506] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33240] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(395), 2, + ACTIONS(3876), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - STATE(1557), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(393), 19, + ACTIONS(3874), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143612,117 +145836,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31592] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4138), 1, - anon_sym_COLON_COLON, - STATE(1558), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4136), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4134), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31652] = 21, + [33322] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(3876), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1559), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(3874), 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, @@ -143733,31 +145898,34 @@ 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, - [31742] = 10, + [33406] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - STATE(1560), 2, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143767,7 +145935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 25, + ACTIONS(3874), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143793,49 +145961,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31810] = 13, + [33476] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4100), 1, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4094), 2, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4192), 1, + anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1561), 2, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 6, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4190), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33566] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4142), 1, + anon_sym_DOT_DOT, + ACTIONS(4196), 1, anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3816), 25, + ACTIONS(4144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1591), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4194), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143846,49 +146097,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [31884] = 12, + [33656] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4094), 2, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1562), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3876), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 25, + ACTIONS(3874), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143914,66 +146162,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31956] = 22, + [33734] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4130), 1, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, + ACTIONS(4200), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3998), 7, + ACTIONS(4198), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143984,63 +146225,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32048] = 21, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33820] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4130), 1, + ACTIONS(4142), 1, anon_sym_DOT_DOT, - ACTIONS(4143), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, + ACTIONS(4144), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1564), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4141), 17, + ACTIONS(3966), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144051,25 +146299,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_COMMA, - anon_sym_else, - [32138] = 9, + [33912] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3548), 1, - anon_sym_LBRACE, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(4145), 1, + ACTIONS(3456), 1, anon_sym_BANG, - STATE(1490), 1, + ACTIONS(4202), 1, + anon_sym_COLON_COLON, + STATE(1481), 1, sym_field_initializer_list, - STATE(1565), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144085,11 +146329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 24, - anon_sym_SEMI, + ACTIONS(1457), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144109,28 +146352,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [32204] = 11, + [33975] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4149), 1, - anon_sym_BANG, - ACTIONS(4151), 1, + ACTIONS(3446), 1, anon_sym_COLON_COLON, - ACTIONS(4153), 1, - anon_sym_LT2, - STATE(1652), 1, - sym_parameters, - STATE(1667), 1, - sym_type_arguments, - STATE(1566), 2, + ACTIONS(3564), 1, + anon_sym_BANG, + ACTIONS(4204), 1, + sym_identifier, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, + ACTIONS(3442), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144141,16 +146379,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), 20, + anon_sym_as, + ACTIONS(3440), 23, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144162,88 +146401,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32274] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4136), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4134), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32334] = 11, + [34038] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, + ACTIONS(4180), 1, anon_sym_BANG, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4151), 1, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4208), 1, anon_sym_COLON_COLON, - ACTIONS(4153), 1, - anon_sym_LT2, - STATE(1652), 1, - sym_parameters, - STATE(1667), 1, - sym_type_arguments, - STATE(1568), 2, + STATE(1751), 1, + sym_field_initializer_list, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3416), 17, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144254,14 +146436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 20, + ACTIONS(1457), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144275,34 +146456,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32404] = 11, + [34103] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_BANG, - ACTIONS(4147), 1, + ACTIONS(4178), 1, anon_sym_LPAREN, - ACTIONS(4151), 1, - anon_sym_COLON_COLON, - ACTIONS(4153), 1, + ACTIONS(4184), 1, anon_sym_LT2, - STATE(1652), 1, - sym_parameters, - STATE(1667), 1, + ACTIONS(4210), 1, + anon_sym_COLON_COLON, + STATE(1661), 1, sym_type_arguments, - STATE(1569), 2, + STATE(1688), 1, + sym_parameters, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, + ACTIONS(3471), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144320,7 +146501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3442), 20, + ACTIONS(3469), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144341,182 +146522,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32474] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1225), 1, - anon_sym_DASH, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - ACTIONS(1285), 1, - sym__raw_string_literal_start, - ACTIONS(2538), 1, - anon_sym_COLON_COLON, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3386), 1, - sym_metavariable, - STATE(2126), 1, - sym_scoped_identifier, - STATE(2208), 1, - sym__literal_pattern, - STATE(3696), 1, - sym_bracketed_type, - STATE(3770), 1, - sym_generic_type_with_turbofish, - ACTIONS(1277), 2, - anon_sym_true, - anon_sym_false, - STATE(1570), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1273), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3384), 3, - sym_self, - sym_super, - sym_crate, - STATE(2093), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3382), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32560] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [34170] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, - anon_sym_DASH, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - ACTIONS(1285), 1, - sym__raw_string_literal_start, - ACTIONS(2538), 1, - anon_sym_COLON_COLON, - ACTIONS(3400), 1, - sym_identifier, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2112), 1, - sym_scoped_identifier, - STATE(2204), 1, - sym__literal_pattern, - STATE(3696), 1, - sym_bracketed_type, - STATE(3770), 1, - sym_generic_type_with_turbofish, - ACTIONS(1277), 2, - anon_sym_true, - anon_sym_false, - STATE(1571), 2, + ACTIONS(3602), 1, + anon_sym_LBRACE, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2093), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3406), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32646] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4094), 2, + ACTIONS(3530), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1572), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 5, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3816), 25, - anon_sym_SEMI, + ACTIONS(3532), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144535,177 +146572,96 @@ 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, - [32722] = 5, + anon_sym_COLON_COLON, + anon_sym_as, + [34228] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1573), 2, + ACTIONS(3530), 1, + anon_sym_BANG, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(4160), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3528), 17, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4158), 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, - [32780] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3574), 1, - sym_identifier, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3582), 1, - sym_metavariable, - STATE(2774), 1, - sym_scoped_identifier, - STATE(2984), 1, - sym__literal_pattern, - STATE(3594), 1, - sym_bracketed_type, - STATE(3611), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3580), 3, - sym_self, - sym_super, - sym_crate, - STATE(2385), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3576), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [32866] = 17, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3526), 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, + [34288] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(3505), 1, + anon_sym_BANG, + ACTIONS(3507), 1, + anon_sym_COLON_COLON, + STATE(1601), 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, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(3820), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3816), 21, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3501), 22, 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, @@ -144716,69 +146672,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32948] = 21, + anon_sym_as, + anon_sym_LT2, + [34348] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(3546), 1, + anon_sym_BANG, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + STATE(1602), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3544), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4130), 1, - anon_sym_DOT_DOT, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3542), 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, - STATE(1576), 2, + anon_sym_as, + anon_sym_LT2, + [34408] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(3530), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 17, - anon_sym_SEMI, + anon_sym_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(3532), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144789,126 +146775,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33038] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_EQ_EQ, + 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, + [34464] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, - anon_sym_DASH, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - ACTIONS(1285), 1, - sym__raw_string_literal_start, - ACTIONS(2538), 1, + ACTIONS(3834), 1, anon_sym_COLON_COLON, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3398), 1, - sym_metavariable, - STATE(2117), 1, - sym_scoped_identifier, - STATE(2183), 1, - sym__literal_pattern, - STATE(3696), 1, - sym_bracketed_type, - STATE(3770), 1, - sym_generic_type_with_turbofish, - ACTIONS(1277), 2, - anon_sym_true, - anon_sym_false, - STATE(1577), 2, + ACTIONS(4165), 1, + anon_sym_BANG, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3396), 3, - sym_self, - sym_super, - sym_crate, - STATE(2093), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(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, - [33124] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3816), 20, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -144920,67 +146830,48 @@ 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, - [33208] = 21, + anon_sym_as, + [34524] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, + ACTIONS(3444), 1, + anon_sym_BANG, ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4130), 1, - anon_sym_DOT_DOT, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4094), 2, + anon_sym_COLON_COLON, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4104), 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(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4166), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3440), 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, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144991,33 +146882,30 @@ 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, - [33298] = 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [34584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1580), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(3538), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 9, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -145025,13 +146913,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(3816), 25, - anon_sym_SEMI, + ACTIONS(3540), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145050,68 +146938,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33368] = 22, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34640] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(4212), 1, + anon_sym_COLON_COLON, + STATE(1607), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4130), 1, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4082), 7, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4126), 10, + 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, @@ -145122,63 +146986,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33460] = 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_SQUOTE, + anon_sym_as, + [34700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4130), 1, - anon_sym_DOT_DOT, - ACTIONS(4172), 1, - anon_sym_EQ, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1582), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4170), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3507), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145189,65 +147036,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33550] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34756] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1663), 1, + sym_type_arguments, + STATE(1690), 1, + sym_parameters, + STATE(1609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3515), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4130), 1, - anon_sym_DOT_DOT, - ACTIONS(4176), 1, - anon_sym_EQ, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4132), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1583), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4174), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3513), 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, @@ -145256,31 +147093,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33640] = 8, + 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, + [34820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, - STATE(1490), 1, - sym_field_initializer_list, - STATE(1584), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3546), 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, @@ -145290,7 +147125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 24, + ACTIONS(3548), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -145313,25 +147148,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [33703] = 9, + [34876] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4149), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LBRACE, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - STATE(1790), 1, - sym_field_initializer_list, - STATE(1585), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1663), 1, + sym_type_arguments, + STATE(1690), 1, + sym_parameters, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3519), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145342,13 +147178,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(1475), 23, - anon_sym_LPAREN, + ACTIONS(3517), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145362,36 +147199,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33768] = 8, + [34940] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_COLON_COLON, - ACTIONS(3558), 1, - anon_sym_BANG, - ACTIONS(4184), 1, - sym_identifier, - STATE(1586), 2, + ACTIONS(3604), 1, + anon_sym_LBRACE, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 16, + 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, @@ -145401,12 +147233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3424), 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, @@ -145426,43 +147256,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33831] = 10, + anon_sym_COLON_COLON, + anon_sym_as, + [34998] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4153), 1, - anon_sym_LT2, - ACTIONS(4186), 1, - anon_sym_COLON_COLON, - STATE(1652), 1, - sym_parameters, - STATE(1667), 1, - sym_type_arguments, - STATE(1587), 2, + ACTIONS(3614), 1, + anon_sym_LBRACE, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3448), 17, + ACTIONS(3546), 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(3446), 20, + ACTIONS(3548), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145476,42 +147300,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_COLON_COLON, anon_sym_as, - [33898] = 5, + [35056] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1588), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1663), 1, + sym_type_arguments, + STATE(1690), 1, + sym_parameters, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3466), 16, + ACTIONS(3477), 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(3468), 25, - anon_sym_LPAREN, + ACTIONS(3475), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145523,46 +147358,50 @@ 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, - [33954] = 5, + [35120] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1589), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1663), 1, + sym_type_arguments, + STATE(1690), 1, + sym_parameters, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 16, + ACTIONS(3511), 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(3506), 25, - 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, @@ -145574,48 +147413,41 @@ 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, - [34010] = 7, + [35184] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_BANG, - ACTIONS(3498), 1, - anon_sym_COLON_COLON, - STATE(1590), 2, + ACTIONS(3640), 1, + anon_sym_LBRACE, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 17, + 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_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3492), 22, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145630,27 +147462,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [34070] = 7, + [35242] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, + ACTIONS(3538), 1, anon_sym_BANG, - ACTIONS(3526), 1, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - STATE(1591), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 17, + ACTIONS(3536), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145668,7 +147502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3520), 22, + ACTIONS(3534), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145691,23 +147525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [34130] = 9, + [35302] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4153), 1, - anon_sym_LT2, - STATE(1653), 1, - sym_parameters, - STATE(1676), 1, - sym_type_arguments, - STATE(1592), 2, + ACTIONS(4028), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 17, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145718,14 +147547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 20, + ACTIONS(3982), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145739,31 +147567,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34194] = 6, + [35359] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3724), 1, - anon_sym_LBRACE, - STATE(1593), 2, + ACTIONS(887), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4214), 1, + anon_sym_SEMI, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4220), 1, + anon_sym_COMMA, + STATE(3163), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3466), 16, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [35454] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4028), 1, + anon_sym_COLON_COLON, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3986), 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, @@ -145773,10 +147672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3468), 24, + ACTIONS(3982), 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, @@ -145796,43 +147695,35 @@ 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, - [34252] = 9, + [35511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4153), 1, - anon_sym_LT2, - STATE(1653), 1, - sym_parameters, - STATE(1676), 1, - sym_type_arguments, - STATE(1594), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 17, + 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_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 20, + ACTIONS(3540), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145846,31 +147737,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [34316] = 6, + [35566] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3722), 1, - anon_sym_LBRACE, - STATE(1595), 2, + ACTIONS(3948), 1, + anon_sym_BANG, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 16, + ACTIONS(3442), 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, @@ -145880,7 +147775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3498), 24, + ACTIONS(3440), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145903,19 +147798,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, - [34374] = 6, + [35625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1596), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 16, + ACTIONS(3530), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145932,7 +147824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 24, + ACTIONS(3532), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145957,15 +147849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34432] = 5, + [35680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1597), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 16, + ACTIONS(3505), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145982,10 +147874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 25, + ACTIONS(3507), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146006,43 +147898,101 @@ 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, - [34488] = 9, + [35735] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4153), 1, - anon_sym_LT2, - STATE(1653), 1, - sym_parameters, - STATE(1676), 1, - sym_type_arguments, - STATE(1598), 2, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(4222), 1, + sym_identifier, + ACTIONS(4224), 1, + anon_sym_fn, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2758), 1, + sym_scoped_type_identifier, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3652), 1, + sym_function_modifiers, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 17, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3634), 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, + [35824] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1626), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 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(3528), 20, + ACTIONS(3548), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146056,26 +148006,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [34552] = 7, + [35879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_BANG, - ACTIONS(4090), 1, + ACTIONS(3984), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1599), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146091,10 +148043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 24, + ACTIONS(3982), 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, @@ -146114,21 +148066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34612] = 7, + [35936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4076), 1, - anon_sym_COLON_COLON, - ACTIONS(4145), 1, - anon_sym_BANG, - STATE(1600), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146144,11 +148091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 24, - anon_sym_SEMI, + ACTIONS(3798), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146168,20 +148115,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, - [34672] = 7, + [35991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4188), 1, - anon_sym_COLON_COLON, - STATE(1601), 2, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146197,10 +148141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 24, + ACTIONS(3624), 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, @@ -146220,26 +148165,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [34732] = 6, + [36046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3572), 1, - anon_sym_LBRACE, - STATE(1602), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 16, + ACTIONS(3686), 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, @@ -146249,9 +148191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3506), 24, + ACTIONS(3684), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146274,22 +148217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34790] = 5, + [36101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 16, + ACTIONS(3784), 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, @@ -146299,10 +148241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3498), 25, + ACTIONS(3782), 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, @@ -146323,25 +148266,87 @@ 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, - [34846] = 9, + [36156] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4153), 1, - anon_sym_LT2, - STATE(1653), 1, - sym_parameters, - STATE(1676), 1, - sym_type_arguments, - STATE(1604), 2, + ACTIONS(1157), 1, + anon_sym_extern, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(3636), 1, + anon_sym_default, + ACTIONS(4226), 1, + sym_identifier, + ACTIONS(4228), 1, + anon_sym_fn, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2686), 1, + sym_scoped_type_identifier, + STATE(3509), 1, + sym_function_modifiers, + STATE(3610), 1, + sym_scoped_identifier, + STATE(3633), 1, + sym_bracketed_type, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(1141), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3634), 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, + [36245] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4230), 1, + anon_sym_else, + STATE(1839), 1, + sym_else_clause, + STATE(1633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146352,14 +148357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 20, + ACTIONS(1405), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146373,26 +148377,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34910] = 7, + [36304] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 1, + ACTIONS(4180), 1, anon_sym_BANG, - ACTIONS(3468), 1, + ACTIONS(4232), 1, anon_sym_COLON_COLON, - STATE(1605), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3464), 17, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146403,14 +148409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3462), 22, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146425,27 +148429,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_as, - anon_sym_LT2, - [34970] = 7, + [36363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, - anon_sym_BANG, - ACTIONS(3506), 1, + ACTIONS(3984), 1, anon_sym_COLON_COLON, - STATE(1606), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 17, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146456,17 +148459,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(3500), 22, + ACTIONS(3982), 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, @@ -146478,97 +148479,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [35030] = 22, - ACTIONS(29), 1, + [36420] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(871), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4234), 1, + anon_sym_SEMI, + ACTIONS(4236), 1, + anon_sym_COMMA, + STATE(3143), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1636), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [36515] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1265), 1, - anon_sym_extern, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3628), 1, - anon_sym_default, - ACTIONS(4190), 1, - sym_identifier, - ACTIONS(4192), 1, - anon_sym_fn, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(2467), 1, - sym_extern_modifier, - STATE(2687), 1, - sym_scoped_type_identifier, - STATE(3483), 1, - sym_generic_type, - STATE(3598), 1, - sym_bracketed_type, - STATE(3617), 1, - sym_function_modifiers, - STATE(3668), 1, - sym_scoped_identifier, - STATE(3752), 1, - sym_generic_type_with_turbofish, - ACTIONS(3484), 2, - anon_sym_gen, - anon_sym_union, - STATE(1607), 2, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4238), 1, + anon_sym_SEMI, + ACTIONS(4240), 1, + anon_sym_COMMA, + STATE(3184), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(1249), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3626), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [35119] = 5, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [36610] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1608), 2, + STATE(1496), 1, + sym_label, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 16, + ACTIONS(3662), 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, @@ -146578,10 +148655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3506), 24, + ACTIONS(3660), 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, @@ -146601,40 +148678,138 @@ 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, - [35174] = 5, + [36667] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1609), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1528), 1, + sym_block, + STATE(3714), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 16, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 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, + [36762] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1494), 1, + sym_block, + STATE(3714), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3498), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146645,97 +148820,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [36857] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(480), 1, + sym_block, + STATE(3778), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35229] = 6, + ACTIONS(4258), 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, + [36952] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3808), 2, + ACTIONS(1383), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1610), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(498), 1, + sym_block, + STATE(3778), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 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, + [37047] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1844), 1, + sym_block, + STATE(3779), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3806), 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(4268), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35286] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1611), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 16, - anon_sym_PLUS, + ACTIONS(4244), 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(3526), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146746,48 +149030,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, - [35341] = 6, + [37142] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 2, + ACTIONS(407), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1612), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3810), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(1850), 1, + sym_block, + STATE(3779), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3806), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146798,22 +149100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35398] = 5, + [37237] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1613), 2, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146829,11 +149126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 25, + ACTIONS(3440), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146853,21 +149149,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, - [35453] = 7, + [37294] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4149), 1, - anon_sym_BANG, - ACTIONS(4194), 1, + ACTIONS(4270), 1, anon_sym_COLON_COLON, - STATE(1614), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146883,10 +149177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(1457), 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, @@ -146906,57 +149200,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, - [35512] = 22, + [37351] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1265), 1, + ACTIONS(1157), 1, anon_sym_extern, - ACTIONS(3482), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3490), 1, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(3628), 1, + ACTIONS(3636), 1, anon_sym_default, - ACTIONS(4196), 1, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(4198), 1, + ACTIONS(4274), 1, anon_sym_fn, - STATE(2291), 1, + STATE(2317), 1, aux_sym_function_modifiers_repeat1, - STATE(2467), 1, + STATE(2461), 1, sym_extern_modifier, - STATE(2625), 1, + STATE(2872), 1, sym_scoped_type_identifier, - STATE(3483), 1, - sym_generic_type, - STATE(3550), 1, + STATE(3514), 1, sym_function_modifiers, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, + STATE(3610), 1, sym_scoped_identifier, - STATE(3752), 1, + STATE(3633), 1, + sym_bracketed_type, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, sym_generic_type_with_turbofish, - ACTIONS(3484), 2, + ACTIONS(3493), 2, anon_sym_gen, anon_sym_union, - STATE(1615), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(1249), 3, + ACTIONS(1141), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - ACTIONS(3626), 17, + ACTIONS(3634), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146974,38 +149269,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35601] = 5, + [37440] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1616), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(422), 1, + sym_block, + STATE(3621), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3666), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1648), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147016,46 +149339,136 @@ 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, - [35656] = 5, + [37535] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4276), 1, + anon_sym_SEMI, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(3147), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [37630] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + STATE(401), 1, + sym_block, + STATE(3621), 1, + sym_label, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3770), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4268), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147066,23 +149479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35711] = 5, + [37725] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, + ACTIONS(4280), 1, + anon_sym_SQUOTE, + STATE(1747), 1, + sym_label, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3596), 15, + ACTIONS(3662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147098,10 +149507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3594), 25, + ACTIONS(3660), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -147122,58 +149530,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35766] = 22, + [37784] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1265), 1, + ACTIONS(1157), 1, anon_sym_extern, - ACTIONS(3482), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3490), 1, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(3628), 1, + ACTIONS(3636), 1, anon_sym_default, - ACTIONS(4200), 1, + ACTIONS(4282), 1, sym_identifier, - ACTIONS(4202), 1, + ACTIONS(4284), 1, anon_sym_fn, - STATE(2291), 1, + STATE(2317), 1, aux_sym_function_modifiers_repeat1, - STATE(2467), 1, + STATE(2461), 1, sym_extern_modifier, - STATE(2843), 1, + STATE(2868), 1, sym_scoped_type_identifier, - STATE(3483), 1, - sym_generic_type, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, + STATE(3610), 1, sym_scoped_identifier, - STATE(3752), 1, + STATE(3633), 1, + sym_bracketed_type, + STATE(3711), 1, + sym_generic_type, + STATE(3780), 1, sym_generic_type_with_turbofish, - STATE(3778), 1, + STATE(3814), 1, sym_function_modifiers, - ACTIONS(3484), 2, + ACTIONS(3493), 2, anon_sym_gen, anon_sym_union, - STATE(1619), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(1249), 3, + ACTIONS(1141), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - ACTIONS(3626), 17, + ACTIONS(3634), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -147191,66 +149598,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35855] = 25, + [37873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RBRACK, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1653), 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, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4204), 1, - anon_sym_SEMI, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4210), 1, - anon_sym_COMMA, - STATE(3046), 1, - aux_sym_arguments_repeat1, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1620), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1441), 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, @@ -147261,19 +149639,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35950] = 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_as, + anon_sym_else, + [37927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4212), 1, - anon_sym_else, - STATE(1823), 1, - sym_else_clause, - STATE(1621), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 15, + ACTIONS(3612), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147289,7 +149671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1413), 23, + ACTIONS(3610), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147312,20 +149694,84 @@ 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, - [36009] = 7, + [37981] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4038), 1, - anon_sym_BANG, - ACTIONS(4040), 1, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4194), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [38067] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4290), 1, anon_sym_COLON_COLON, - STATE(1622), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147341,7 +149787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 23, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147365,66 +149811,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36068] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [38123] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(401), 1, - sym_block, - STATE(3463), 1, - sym_label, - ACTIONS(4214), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1623), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, + ACTIONS(3876), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 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, @@ -147435,17 +149863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36163] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_COLON_COLON, - STATE(1624), 2, + ACTIONS(4292), 1, + anon_sym_DASH_GT, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147461,10 +149896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 24, + ACTIONS(3790), 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, @@ -147484,68 +149919,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [36220] = 25, + [38253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(889), 1, - anon_sym_RBRACK, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1659), 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, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 1, - anon_sym_SEMI, - ACTIONS(4244), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_arguments_repeat1, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3702), 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, @@ -147556,66 +149961,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36315] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [38307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_RBRACK, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3630), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4246), 1, - anon_sym_SEMI, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(3080), 1, - aux_sym_arguments_repeat1, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1626), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3628), 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, @@ -147626,66 +150010,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36410] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [38361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3734), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(1488), 1, - sym_block, - STATE(3680), 1, - sym_label, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1627), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3732), 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, @@ -147696,66 +150059,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36505] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [38415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, + STATE(1662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(1521), 1, - sym_block, - STATE(3680), 1, - sym_label, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3688), 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, @@ -147766,66 +150108,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36600] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + 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, + [38469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, + STATE(1663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3738), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(409), 1, - sym_block, - STATE(3463), 1, - sym_label, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1629), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3736), 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, @@ -147836,17 +150157,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36695] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [38523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 1, - sym_label, - STATE(1630), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147862,10 +150189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 24, + ACTIONS(3786), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147885,21 +150212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - [36752] = 7, + [38577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4250), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - sym_label, - STATE(1631), 2, + ACTIONS(4294), 1, + anon_sym_DASH_GT, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147915,7 +150240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 23, + ACTIONS(3740), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147939,136 +150264,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36811] = 25, + [38633] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(478), 1, - sym_block, - STATE(3744), 1, - sym_label, - ACTIONS(4214), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1632), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36906] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(3876), 7, anon_sym_CARET, - ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(482), 1, - sym_block, - STATE(3744), 1, - sym_label, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1633), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, + anon_sym_DOT_DOT, + ACTIONS(3874), 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, @@ -148079,66 +150313,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37001] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38701] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3618), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(1829), 1, - sym_block, - STATE(3745), 1, - sym_label, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3616), 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, @@ -148149,66 +150361,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37096] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [38755] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3515), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - STATE(1834), 1, - sym_block, - STATE(3745), 1, - sym_label, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1635), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3513), 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, @@ -148219,17 +150412,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37191] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [38811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4090), 1, - anon_sym_COLON_COLON, - STATE(1636), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148245,10 +150443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 24, + ACTIONS(1437), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148268,19 +150466,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, anon_sym_as, - [37248] = 6, + anon_sym_else, + [38865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4252), 1, - anon_sym_COLON_COLON, - STATE(1637), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148296,10 +150492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 24, + ACTIONS(1445), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148319,91 +150515,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [37305] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1265), 1, - anon_sym_extern, - ACTIONS(3482), 1, - anon_sym_COLON_COLON, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3628), 1, - anon_sym_default, - ACTIONS(4254), 1, - sym_identifier, - ACTIONS(4256), 1, - anon_sym_fn, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(2467), 1, - sym_extern_modifier, - STATE(2749), 1, - sym_scoped_type_identifier, - STATE(3480), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_generic_type, - STATE(3598), 1, - sym_bracketed_type, - STATE(3668), 1, - sym_scoped_identifier, - STATE(3752), 1, - sym_generic_type_with_turbofish, - ACTIONS(3484), 2, - anon_sym_gen, - anon_sym_union, - STATE(1638), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1249), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3626), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [37394] = 5, + anon_sym_else, + [38919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3466), 16, + ACTIONS(1451), 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, @@ -148413,7 +150541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3468), 24, + ACTIONS(1449), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148436,19 +150564,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, - [37449] = 6, + anon_sym_else, + [38973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3808), 1, - anon_sym_COLON_COLON, - STATE(1640), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148464,10 +150590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 24, + ACTIONS(1433), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148487,68 +150613,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [37506] = 25, + anon_sym_else, + [39027] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RBRACK, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4258), 1, - anon_sym_SEMI, - ACTIONS(4260), 1, - anon_sym_COMMA, - STATE(2852), 1, - aux_sym_arguments_repeat1, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1641), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4296), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148559,15 +150681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37601] = 5, + [39115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(3622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148583,7 +150705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, + ACTIONS(3620), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148606,41 +150728,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, - anon_sym_else, - [37655] = 6, + [39169] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_COLON_COLON, - STATE(1643), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3512), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3510), 23, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148651,48 +150790,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [37711] = 12, + anon_sym_SQUOTE, + [39251] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4214), 2, + ACTIONS(4246), 1, + anon_sym_CARET, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1644), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 7, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3876), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 21, + ACTIONS(3874), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -148714,15 +150851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37779] = 5, + [39323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1645), 2, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, + ACTIONS(3442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148738,7 +150877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3686), 24, + ACTIONS(3440), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148761,45 +150900,51 @@ 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, - [37833] = 14, + [39379] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4214), 2, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(3876), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1646), 2, + ACTIONS(4264), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3816), 21, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 17, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -148814,44 +150959,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37905] = 5, + [39457] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3776), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(399), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3774), 24, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148862,95 +151022,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_DASH_GT, - anon_sym_as, - [37959] = 6, + anon_sym_SQUOTE, + [39539] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_COLON_COLON, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3516), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38015] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1649), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3600), 15, - anon_sym_PLUS, + ACTIONS(4244), 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(3598), 24, + ACTIONS(4262), 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, @@ -148961,25 +151089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [38069] = 6, + anon_sym_SQUOTE, + [39625] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4264), 1, + ACTIONS(4298), 1, anon_sym_COLON_COLON, - STATE(1650), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148995,7 +151116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149019,54 +151140,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38125] = 17, + [39681] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(3820), 2, - anon_sym_EQ, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4214), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - STATE(1651), 2, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3816), 17, + ACTIONS(4118), 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, @@ -149077,20 +151204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38203] = 6, + [39767] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4266), 1, - anon_sym_DASH_GT, - STATE(1652), 2, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 15, + ACTIONS(3519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149106,7 +151231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3670), 23, + ACTIONS(3517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149130,39 +151255,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38259] = 6, + [39823] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_DASH_GT, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3678), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4300), 1, + anon_sym_RPAREN, + ACTIONS(4302), 1, + anon_sym_COMMA, + STATE(2907), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3676), 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(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149173,45 +151323,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [38315] = 6, + [39915] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4270), 1, - anon_sym_COLON_COLON, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1473), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(3876), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1475), 23, + STATE(1685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3874), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -149223,67 +151382,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, - [38371] = 21, + anon_sym_SQUOTE, + [39995] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4176), 1, - anon_sym_EQ, - ACTIONS(4218), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4224), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4226), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4272), 1, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4214), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4274), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1655), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4058), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4174), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149294,49 +151451,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38457] = 15, + [40083] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(959), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4214), 2, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4304), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1656), 2, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3816), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149347,22 +151519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38531] = 5, + [40175] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1657), 2, + ACTIONS(4306), 1, + anon_sym_DASH_GT, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(3748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149378,7 +151545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 24, + ACTIONS(3746), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149402,65 +151569,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38585] = 24, + [40231] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(935), 1, + ACTIONS(965), 1, anon_sym_RPAREN, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4276), 1, + ACTIONS(4308), 1, anon_sym_COMMA, - STATE(2866), 1, + STATE(2946), 1, aux_sym_arguments_repeat1, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149471,15 +151637,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38677] = 5, + [40323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + ACTIONS(4310), 1, + anon_sym_DASH_GT, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149495,7 +151663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 24, + ACTIONS(3752), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149519,70 +151687,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38731] = 5, + [40379] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1437), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1435), 24, - anon_sym_LPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3854), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, anon_sym_as, - anon_sym_else, - [38785] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1661), 2, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149591,13 +151719,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(1427), 24, + ACTIONS(3874), 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, @@ -149616,17 +151741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [38839] = 5, + anon_sym_SQUOTE, + [40445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1662), 2, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149642,7 +151768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 24, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149665,17 +151791,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, - [38893] = 5, + [40501] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149691,7 +151818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 24, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149714,56 +151841,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, - [38947] = 19, + [40557] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4192), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4224), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4226), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4120), 2, - anon_sym_EQ, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4214), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - STATE(1664), 2, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 15, + ACTIONS(4190), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -149776,89 +151906,30 @@ 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, - [39029] = 22, + [40643] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1665), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4278), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39117] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1666), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3642), 15, + ACTIONS(3876), 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, @@ -149867,13 +151938,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(3640), 24, + ACTIONS(3874), 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, @@ -149892,37 +151960,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_COLON_COLON, - anon_sym_as, - [39171] = 5, + anon_sym_SQUOTE, + [40707] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4248), 1, + anon_sym_AMP, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, - anon_sym_PLUS, + ACTIONS(4244), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 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(3652), 24, + ACTIONS(3874), 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, @@ -149941,147 +152017,78 @@ 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, - [39225] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(395), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(393), 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, - [39307] = 21, + [40777] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4272), 1, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4274), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1669), 2, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4318), 1, + anon_sym_RBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4324), 1, + anon_sym_COMMA, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(2954), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39393] = 6, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 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, + [40857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4280), 1, - anon_sym_DASH_GT, - STATE(1670), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(3503), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150092,12 +152099,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(3764), 23, + ACTIONS(3501), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150112,128 +152121,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39449] = 21, + anon_sym_LT2, + [40911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4272), 1, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4274), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1671), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(3762), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4166), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39535] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1672), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3816), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3760), 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, @@ -150245,133 +152170,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39615] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4272), 1, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4274), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1673), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3930), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4230), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39703] = 24, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [40965] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4282), 1, + ACTIONS(4332), 1, anon_sym_RPAREN, - ACTIONS(4284), 1, + ACTIONS(4334), 1, anon_sym_COMMA, - STATE(2989), 1, + STATE(2891), 1, aux_sym_arguments_repeat1, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150382,64 +152246,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39795] = 24, + [41057] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, ACTIONS(4286), 1, - anon_sym_COMMA, - STATE(3057), 1, - aux_sym_arguments_repeat1, - ACTIONS(4094), 2, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(3936), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150450,15 +152312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39887] = 5, + [41145] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, + ACTIONS(4336), 1, + anon_sym_DASH_GT, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150474,7 +152338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 24, + ACTIONS(3764), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150497,66 +152361,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39941] = 24, + [41201] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, - anon_sym_RPAREN, - ACTIONS(3818), 1, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4288), 1, + ACTIONS(4338), 1, anon_sym_COMMA, - STATE(3033), 1, + STATE(2948), 1, aux_sym_arguments_repeat1, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1677), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150567,157 +152430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40033] = 18, - ACTIONS(29), 1, - anon_sym_LT, + [41293] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - sym_identifier, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(4294), 1, - anon_sym_RBRACE, - ACTIONS(4296), 1, - anon_sym_STAR, - ACTIONS(4300), 1, - anon_sym_COMMA, - ACTIONS(4302), 1, + ACTIONS(4340), 1, anon_sym_COLON_COLON, - ACTIONS(4306), 1, - sym_metavariable, - STATE(2513), 1, - sym_scoped_identifier, - STATE(3092), 1, - sym__use_clause, - STATE(3505), 1, - sym_bracketed_type, - STATE(3759), 1, - sym_generic_type_with_turbofish, - STATE(1678), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4304), 3, - sym_self, - sym_super, - sym_crate, - STATE(3086), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4298), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [40113] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(1459), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1679), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4308), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40201] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150726,10 +152454,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(3816), 21, + ACTIONS(1457), 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, @@ -150748,40 +152479,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40265] = 5, + anon_sym_as, + [41349] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3494), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3492), 22, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1705), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3966), 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(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150790,23 +152544,21 @@ 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, - [40319] = 5, + [41437] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + ACTIONS(4342), 1, + anon_sym_LPAREN, + STATE(1753), 1, + sym_arguments, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150822,8 +152574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 24, - anon_sym_LPAREN, + ACTIONS(3678), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -150845,66 +152596,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [40373] = 24, + [41495] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(3818), 1, + ACTIONS(931), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4310), 1, + ACTIONS(4344), 1, anon_sym_COMMA, - STATE(2913), 1, + STATE(2986), 1, aux_sym_arguments_repeat1, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1683), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150915,17 +152665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40465] = 6, + [41587] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, + ACTIONS(4346), 1, anon_sym_DASH_GT, - STATE(1684), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3736), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150941,7 +152691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3734), 23, + ACTIONS(3770), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150965,39 +152715,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40521] = 6, + [41643] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - anon_sym_DASH_GT, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3742), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3740), 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(1709), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4348), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151008,69 +152781,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, - [40577] = 22, + [41731] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4224), 1, + ACTIONS(4252), 1, anon_sym_AMP_AMP, - ACTIONS(4226), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(4272), 1, + ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4214), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4274), 2, + ACTIONS(4288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 3, + ACTIONS(3912), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4216), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4230), 10, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151081,39 +152847,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40665] = 6, + [41819] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_DASH_GT, - STATE(1687), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3746), 23, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4186), 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, @@ -151124,24 +152911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40721] = 6, + anon_sym_SQUOTE, + [41905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4318), 1, + ACTIONS(4350), 1, anon_sym_DASH_GT, - STATE(1688), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151157,7 +152938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 23, + ACTIONS(3776), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151181,15 +152962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40777] = 5, + [41961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + ACTIONS(4352), 1, + anon_sym_COLON_COLON, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151205,7 +152988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 24, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151228,46 +153011,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [40831] = 11, + [42017] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1690), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3820), 9, + ACTIONS(4148), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_AMP_AMP, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4286), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3816), 21, + ACTIONS(4288), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4146), 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, @@ -151278,44 +153076,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [40897] = 6, + [42103] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_COLON_COLON, - STATE(1691), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 15, - anon_sym_PLUS, + ACTIONS(4358), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3876), 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(3528), 23, + ACTIONS(3874), 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, @@ -151334,84 +153132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40953] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4272), 1, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4274), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1692), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4082), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41041] = 6, + [42170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - STATE(1693), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(4022), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151427,7 +153156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(4020), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151451,129 +153180,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41097] = 21, + [42223] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4172), 1, - anon_sym_EQ, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4272), 1, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4274), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1694), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4170), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [41183] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(287), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4322), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, - anon_sym_COMMA, - STATE(2934), 1, - aux_sym_arguments_repeat1, - ACTIONS(4094), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1695), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151584,17 +153246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41275] = 6, + [42312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - STATE(1696), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151610,7 +153270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(3678), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151634,17 +153294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41331] = 6, + [42365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_COLON_COLON, - STATE(1697), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151660,7 +153318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(3966), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151684,17 +153342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41387] = 6, + [42418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4040), 1, - anon_sym_COLON_COLON, - STATE(1698), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151710,7 +153366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 23, + ACTIONS(3830), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151734,84 +153390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41443] = 21, + [42471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_AMP_AMP, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4272), 1, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4274), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1699), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [41529] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4328), 1, - anon_sym_LPAREN, - STATE(1799), 1, - sym_arguments, - STATE(1700), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151827,7 +153414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 22, + ACTIONS(1457), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -151850,44 +153438,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41587] = 13, + [42524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1701), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(1459), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3816), 21, + ACTIONS(1457), 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, @@ -151906,61 +153485,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41657] = 21, + anon_sym_as, + [42577] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4143), 1, - anon_sym_EQ, - ACTIONS(4218), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4224), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4226), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4272), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4214), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4274), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4141), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151971,16 +153552,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, - [41743] = 5, + [42666] = 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(3948), 15, + ACTIONS(4096), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151996,7 +153576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3946), 23, + ACTIONS(4094), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152020,15 +153600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41796] = 5, + [42719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(4084), 15, + ACTIONS(4088), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152044,7 +153624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4082), 23, + ACTIONS(4086), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152068,15 +153648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41849] = 5, + [42772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(4044), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152092,7 +153672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(4042), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152116,62 +153696,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41902] = 23, + [42825] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(1331), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4330), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4350), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4356), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - STATE(399), 1, - sym_match_block, - ACTIONS(4332), 2, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4358), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1706), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4348), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152182,62 +153762,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41991] = 23, + [42914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3956), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1707), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3954), 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, @@ -152248,15 +153803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42080] = 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, + [42967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152272,7 +153834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(3958), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152296,15 +153858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42133] = 5, + [43020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152320,7 +153882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 23, + ACTIONS(3970), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152344,62 +153906,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42186] = 23, + [43073] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1205), 1, - anon_sym_RPAREN, - ACTIONS(3818), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3906), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4362), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1710), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT_DOT, + ACTIONS(3904), 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, @@ -152410,15 +153950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42275] = 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, + [43132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 15, + ACTIONS(4056), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152434,7 +153981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3832), 23, + ACTIONS(4054), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152458,15 +154005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42328] = 5, + [43185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1712), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(4080), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152482,7 +154029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 23, + ACTIONS(4078), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152506,15 +154053,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42381] = 5, + [43238] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(3922), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152528,13 +154081,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(3812), 23, + ACTIONS(3920), 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, @@ -152554,15 +154104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42434] = 5, + [43297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152578,7 +154128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 23, + ACTIONS(3924), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152602,23 +154152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42487] = 9, + [43350] = 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, - STATE(1715), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 14, + ACTIONS(4048), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152632,10 +154174,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(3816), 20, + ACTIONS(4046), 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, @@ -152654,15 +154199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42548] = 5, + anon_sym_as, + [43403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(4052), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152678,7 +154224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(4050), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152702,12 +154248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42601] = 5, + [43456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, ACTIONS(4036), 15, @@ -152750,61 +154296,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42654] = 22, + [43509] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4266), 1, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4268), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4372), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1718), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4372), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152815,15 +154360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42741] = 5, + [43594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152839,7 +154384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 23, + ACTIONS(3962), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152863,40 +154408,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42794] = 8, + [43647] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3856), 1, anon_sym_DOT, - STATE(1720), 2, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4374), 1, + anon_sym_SEMI, + ACTIONS(4376), 1, + anon_sym_else, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 14, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [43736] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(4048), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4378), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152907,28 +154539,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [43823] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4380), 1, + anon_sym_CARET, + ACTIONS(4382), 1, + anon_sym_AMP, + ACTIONS(4384), 1, + anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(399), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4392), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 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(397), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42853] = 8, + [43904] = 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(1721), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(4054), 14, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152942,10 +154623,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(4052), 21, + ACTIONS(3866), 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, @@ -152965,15 +154649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42912] = 5, + [43957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152989,7 +154673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153013,37 +154697,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42965] = 5, + [44010] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3830), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4380), 1, anon_sym_CARET, + ACTIONS(4382), 1, anon_sym_AMP, + ACTIONS(4384), 1, anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4394), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 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(3828), 23, + ACTIONS(4396), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1746), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 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(341), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153054,22 +154761,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, - [43018] = 5, + [44095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153085,7 +154785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 23, + ACTIONS(3974), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153109,61 +154809,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43071] = 22, + [44148] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(4148), 1, + anon_sym_EQ, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4350), 1, - anon_sym_EQ, - ACTIONS(4374), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(3998), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4332), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1725), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4348), 10, + ACTIONS(4146), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153174,62 +154873,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43158] = 23, + [44233] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1726), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4118), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153240,61 +154937,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43247] = 22, + [44318] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4226), 1, + ACTIONS(4408), 1, + anon_sym_AMP_AMP, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, + ACTIONS(4416), 1, anon_sym_EQ, - ACTIONS(4238), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4380), 1, - anon_sym_AMP_AMP, - ACTIONS(4214), 2, + ACTIONS(3936), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4378), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1727), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4234), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4230), 10, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153305,15 +155002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43334] = 5, + [44405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153329,7 +155026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 23, + ACTIONS(3932), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153353,62 +155050,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43387] = 23, + [44458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4068), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4382), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4066), 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(1729), 2, + anon_sym_as, + [44511] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4100), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4098), 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(4126), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44564] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4032), 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(4030), 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, @@ -153419,15 +155187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43476] = 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, + [44617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3998), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153443,7 +155218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 23, + ACTIONS(3996), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153467,15 +155242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43529] = 5, + [44670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(4006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153491,7 +155266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 23, + ACTIONS(4004), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153515,15 +155290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43582] = 5, + [44723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3388), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153539,7 +155314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3846), 23, + ACTIONS(3390), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153563,15 +155338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43635] = 5, + [44776] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153587,7 +155362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, + ACTIONS(3936), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153611,15 +155386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43688] = 5, + [44829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153635,7 +155410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 23, + ACTIONS(3513), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153659,15 +155434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43741] = 5, + [44882] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153683,7 +155458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153707,56 +155482,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43794] = 19, + [44935] = 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(4390), 1, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3942), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4396), 1, - anon_sym_AMP_AMP, - ACTIONS(4398), 1, - anon_sym_PIPE_PIPE, - ACTIONS(395), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4386), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1736), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4388), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(393), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3940), 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, @@ -153767,17 +155523,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, - [43875] = 5, + anon_sym_as, + [44988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 15, + ACTIONS(3519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153793,7 +155554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 23, + ACTIONS(3517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153817,21 +155578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43928] = 8, + [45041] = 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(1738), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 14, + ACTIONS(4072), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153845,10 +155600,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(3854), 21, + ACTIONS(4070), 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, @@ -153868,15 +155626,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43987] = 5, + [45094] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + ACTIONS(4426), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3468), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 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, + [45171] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 15, + ACTIONS(3994), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153890,13 +155714,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(3516), 23, + ACTIONS(3992), 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, @@ -153916,61 +155737,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44040] = 22, + [45230] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4416), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(3912), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4406), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1740), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153981,58 +155802,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44127] = 21, + [45317] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4164), 1, + ACTIONS(4188), 1, anon_sym_EQ, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4374), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1741), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 12, + ACTIONS(4186), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -154045,60 +155866,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44212] = 21, + [45402] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1742), 2, + ACTIONS(4428), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154109,61 +155931,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44297] = 22, + [45489] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4350), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4374), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4082), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4332), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1743), 2, + ACTIONS(4430), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4348), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154174,75 +155996,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44384] = 5, + [45576] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3844), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3842), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44437] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - STATE(1745), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 11, + ACTIONS(3876), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, @@ -154254,7 +156028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -154275,42 +156049,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44500] = 13, + [45639] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1746), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 6, + ACTIONS(3876), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -154331,33 +156105,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44569] = 12, + [45708] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1747), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 7, + ACTIONS(3876), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -154365,7 +156139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -154386,43 +156160,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44636] = 14, + [45775] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1748), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 5, + ACTIONS(3876), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -154443,50 +156217,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44707] = 17, + [45846] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(3820), 2, + ACTIONS(3876), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - STATE(1749), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3816), 16, + ACTIONS(3874), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -154503,52 +156277,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44784] = 18, + [45923] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 2, + ACTIONS(3876), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - STATE(1750), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3816), 15, + ACTIONS(3874), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PIPE_PIPE, @@ -154564,30 +156338,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44863] = 11, + [46002] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1751), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 9, + ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -154597,7 +156371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -154618,58 +156392,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44928] = 21, + [46067] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4172), 1, + ACTIONS(4192), 1, anon_sym_EQ, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4374), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1752), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4170), 12, + ACTIONS(4190), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -154682,58 +156456,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45013] = 21, + [46152] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4176), 1, + ACTIONS(4196), 1, anon_sym_EQ, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4374), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1753), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4174), 12, + ACTIONS(4194), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -154746,44 +156520,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45098] = 15, + [46237] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1754), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 4, + ACTIONS(3876), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -154804,54 +156578,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45171] = 19, + [46310] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4120), 2, + ACTIONS(4200), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - STATE(1755), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 14, + ACTIONS(4198), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -154866,85 +156640,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45252] = 5, + [46391] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3876), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_CARET, + ACTIONS(4248), 1, anon_sym_AMP, + ACTIONS(4250), 1, anon_sym_PIPE, + ACTIONS(4254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3874), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4268), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45305] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, - anon_sym_PLUS, + ACTIONS(4244), 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(3878), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4432), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4262), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154955,22 +156704,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, - [45358] = 5, + [46476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154986,7 +156728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 23, + ACTIONS(3802), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155010,15 +156752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45411] = 5, + [46529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155034,7 +156776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 23, + ACTIONS(3806), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155058,15 +156800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45464] = 5, + [46582] = 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(3896), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155082,7 +156824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 23, + ACTIONS(3912), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155106,79 +156848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45517] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4143), 1, - anon_sym_EQ, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4390), 1, - anon_sym_CARET, - ACTIONS(4392), 1, - anon_sym_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE, - ACTIONS(4396), 1, - anon_sym_AMP_AMP, - ACTIONS(4398), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4386), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4404), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1761), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4388), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4141), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45602] = 5, + [46635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155194,7 +156872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(3822), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155218,144 +156896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45655] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4218), 1, - anon_sym_CARET, - ACTIONS(4220), 1, - anon_sym_AMP, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4226), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_DOT_DOT, - ACTIONS(4214), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4228), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4236), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4240), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4216), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4412), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4230), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45740] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4336), 1, - anon_sym_CARET, - ACTIONS(4338), 1, - anon_sym_AMP, - ACTIONS(4340), 1, - anon_sym_PIPE, - ACTIONS(4342), 1, - anon_sym_AMP_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4350), 1, - anon_sym_EQ, - ACTIONS(4374), 1, - anon_sym_DOT_DOT, - ACTIONS(3930), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4354), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4376), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4334), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4352), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4348), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45827] = 5, + [46688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155371,7 +156920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 23, + ACTIONS(3858), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155395,15 +156944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45880] = 5, + [46741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155419,7 +156968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155443,37 +156992,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45933] = 5, + [46794] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4402), 1, anon_sym_CARET, + ACTIONS(4404), 1, anon_sym_AMP, + ACTIONS(4406), 1, anon_sym_PIPE, + ACTIONS(4408), 1, + anon_sym_AMP_AMP, + ACTIONS(4410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4416), 1, + anon_sym_EQ, + ACTIONS(4422), 1, + anon_sym_DOT_DOT, + ACTIONS(4058), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3528), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4424), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155484,67 +157057,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, - [45986] = 21, + [46881] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4220), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4222), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4226), 1, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4232), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4238), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4214), 2, + ACTIONS(4434), 1, + anon_sym_RPAREN, + ACTIONS(4436), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4228), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4236), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4240), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1768), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4216), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4414), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4234), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4230), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155555,15 +157123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46071] = 5, + [46970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(4104), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155579,7 +157147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 23, + ACTIONS(4102), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155603,15 +157171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46124] = 5, + [47023] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(3882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155627,7 +157195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 23, + ACTIONS(3880), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155651,15 +157219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46177] = 5, + [47076] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3916), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155675,7 +157243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3914), 23, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155699,37 +157267,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46230] = 5, + [47129] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3920), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4438), 1, + anon_sym_SEMI, + ACTIONS(4440), 1, + anon_sym_else, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3918), 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(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155740,22 +157333,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, - [46283] = 5, + [47218] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155771,7 +157357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 23, + ACTIONS(3870), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155795,15 +157381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46336] = 5, + [47271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, + ACTIONS(3902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155819,7 +157405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3990), 23, + ACTIONS(3900), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155843,15 +157429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46389] = 5, + [47324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(4040), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155867,7 +157453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3994), 23, + ACTIONS(4038), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155891,15 +157477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46442] = 5, + [47377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 15, + ACTIONS(4010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155915,7 +157501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3922), 23, + ACTIONS(4008), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155939,60 +157525,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46495] = 21, + [47430] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4416), 1, + anon_sym_EQ, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(3966), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1777), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4166), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156003,63 +157590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46580] = 5, + [47517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3936), 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(3934), 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, - [46633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(3846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156075,7 +157614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 23, + ACTIONS(3844), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156099,15 +157638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46686] = 5, + [47570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156123,7 +157662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4002), 23, + ACTIONS(3862), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156147,15 +157686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46739] = 5, + [47623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3930), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156171,7 +157710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 23, + ACTIONS(3928), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156195,15 +157734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46792] = 5, + [47676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156219,7 +157758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 23, + ACTIONS(3884), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156243,15 +157782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46845] = 5, + [47729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156267,7 +157806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 23, + ACTIONS(3888), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156291,15 +157830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46898] = 5, + [47782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156315,7 +157854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 23, + ACTIONS(3892), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156339,15 +157878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46951] = 5, + [47835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(3898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156363,7 +157902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 23, + ACTIONS(3896), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156387,15 +157926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47004] = 5, + [47888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(3910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156411,7 +157950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 23, + ACTIONS(3908), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156435,15 +157974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47057] = 5, + [47941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(4112), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156459,7 +157998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 23, + ACTIONS(4110), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156483,12 +158022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47110] = 5, + [47994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, ACTIONS(3980), 15, @@ -156531,111 +158070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47163] = 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(3984), 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(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, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47216] = 5, + [48047] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3928), 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(3926), 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, - [47269] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(3990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156651,7 +158094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3786), 23, + ACTIONS(3988), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156675,15 +158118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47322] = 5, + [48100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, + ACTIONS(1599), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156699,7 +158142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1587), 23, + ACTIONS(1601), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156723,15 +158166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47375] = 5, + [48153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1793), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(1535), 15, + ACTIONS(1495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156747,7 +158190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1533), 23, + ACTIONS(1493), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156771,15 +158214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47428] = 5, + [48206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1794), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156795,7 +158238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(1509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156819,15 +158262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47481] = 5, + [48259] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156843,7 +158286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 23, + ACTIONS(1513), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156867,81 +158310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47534] = 23, + [48312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4418), 1, - anon_sym_else, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1796), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47623] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1797), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(1503), 15, + ACTIONS(1523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156957,7 +158334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1501), 23, + ACTIONS(1521), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156981,15 +158358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47676] = 5, + [48365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, + ACTIONS(1549), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157005,7 +158382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1505), 23, + ACTIONS(1547), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157029,37 +158406,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47729] = 5, + [48418] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1799), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3964), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4442), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3962), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157070,68 +158472,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, - [47782] = 22, + [48507] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3998), 2, + ACTIONS(3936), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157142,15 +158537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47869] = 5, + [48594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1801), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(4018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157166,7 +158561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 23, + ACTIONS(4016), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157190,15 +158585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47922] = 5, + [48647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1802), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157214,7 +158609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 23, + ACTIONS(1505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157238,60 +158633,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47975] = 21, + [48700] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(3912), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1803), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157302,85 +158698,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48060] = 5, + [48787] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1804), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1451), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4380), 1, anon_sym_CARET, + ACTIONS(4382), 1, anon_sym_AMP, + ACTIONS(4384), 1, anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4394), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 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(1449), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48113] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1805), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, - anon_sym_PLUS, + ACTIONS(4358), 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(3970), 23, + ACTIONS(4390), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4186), 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, @@ -157391,22 +158762,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, - [48166] = 5, + [48872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157422,7 +158786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(1527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157446,61 +158810,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48219] = 22, + [48925] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4082), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1471), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157511,15 +158851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48306] = 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, + [48978] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157535,7 +158882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(1543), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157559,62 +158906,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48359] = 23, + [49031] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4444), 1, + anon_sym_RPAREN, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157625,29 +158972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48448] = 10, + [49120] = 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, - STATE(1810), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(3828), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -157656,10 +158994,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(3816), 20, + ACTIONS(3826), 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, @@ -157678,42 +159019,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48511] = 13, + anon_sym_as, + [49173] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4392), 1, - anon_sym_AMP, - ACTIONS(4386), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1811), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 6, + ACTIONS(3876), 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(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157734,41 +159073,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48580] = 12, + [49236] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4386), 2, + ACTIONS(4382), 1, + anon_sym_AMP, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1812), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 7, + ACTIONS(3876), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157789,43 +159129,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48647] = 14, + [49305] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1813), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 5, + ACTIONS(3876), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157846,50 +159186,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48718] = 17, + [49376] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(3820), 2, + ACTIONS(3876), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - STATE(1814), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3816), 16, + ACTIONS(3874), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157906,52 +159246,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48795] = 18, + [49453] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 2, + ACTIONS(3876), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - STATE(1815), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3816), 15, + ACTIONS(3874), 15, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE_PIPE, @@ -157967,30 +159307,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48874] = 11, + [49532] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1816), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 9, + ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -158000,7 +159340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3816), 20, + ACTIONS(3874), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -158021,58 +159361,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48939] = 21, + [49597] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4172), 1, + ACTIONS(4192), 1, anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4170), 12, + ACTIONS(4190), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -158085,58 +159425,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49024] = 21, + [49682] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, + ACTIONS(4196), 1, anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1818), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4174), 12, + ACTIONS(4194), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -158149,120 +159489,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49109] = 23, + [49767] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4420), 1, - anon_sym_RBRACE, - ACTIONS(4422), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1819), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49198] = 19, - 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(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4120), 2, + ACTIONS(4200), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - STATE(1820), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4114), 14, + ACTIONS(4198), 14, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -158277,111 +159551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49279] = 5, + [49848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3884), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3882), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49332] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1822), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3888), 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(3886), 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, - [49385] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158397,7 +159575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 23, + ACTIONS(3810), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158421,15 +159599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49438] = 5, + [49901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1824), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158445,7 +159623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 23, + ACTIONS(3814), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158469,61 +159647,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49491] = 22, + [49954] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3930), 2, + ACTIONS(4058), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158534,15 +159712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49578] = 5, + [50041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158558,7 +159736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 23, + ACTIONS(1485), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158582,15 +159760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49631] = 5, + [50094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1827), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158606,7 +159784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158630,15 +159808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49684] = 5, + [50147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1828), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4032), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158654,7 +159832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4030), 23, + ACTIONS(1497), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158678,15 +159856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49737] = 5, + [50200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1829), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(4108), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158702,7 +159880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 23, + ACTIONS(4106), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158726,15 +159904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49790] = 5, + [50253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(4076), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158750,7 +159928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 23, + ACTIONS(4074), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158774,15 +159952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49843] = 5, + [50306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1831), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(1465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158798,7 +159976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 23, + ACTIONS(1463), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158822,15 +160000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49896] = 5, + [50359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1832), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158846,7 +160024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158870,15 +160048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49949] = 5, + [50412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1833), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 15, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158894,7 +160072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1445), 23, + ACTIONS(1517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158918,15 +160096,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50002] = 5, + [50465] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1834), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(3966), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [50552] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(1553), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158942,7 +160185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 23, + ACTIONS(1551), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158966,15 +160209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50055] = 5, + [50605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(963), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158990,7 +160233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(965), 23, + ACTIONS(1481), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159014,15 +160257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50108] = 5, + [50658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159038,7 +160281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(979), 23, + ACTIONS(1539), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159062,15 +160305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50161] = 5, + [50711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1837), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159086,7 +160329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 23, + ACTIONS(1023), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159110,15 +160353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50214] = 5, + [50764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(985), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159134,7 +160377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(987), 23, + ACTIONS(977), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159158,80 +160401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50267] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4390), 1, - anon_sym_CARET, - ACTIONS(4392), 1, - anon_sym_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE, - ACTIONS(4396), 1, - anon_sym_AMP_AMP, - ACTIONS(4398), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(3998), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4386), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4400), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4404), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1839), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4388), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4402), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4424), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50354] = 5, + [50817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, + ACTIONS(1503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159247,7 +160425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(991), 23, + ACTIONS(1501), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159271,15 +160449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50407] = 5, + [50870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(951), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159295,7 +160473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 23, + ACTIONS(953), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159319,61 +160497,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50460] = 22, + [50923] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4426), 1, + ACTIONS(4448), 1, anon_sym_EQ, - ACTIONS(4082), 2, + ACTIONS(3936), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4424), 10, + ACTIONS(4446), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159384,15 +160562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50547] = 5, + [51010] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1843), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 15, + ACTIONS(955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159408,7 +160586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(995), 23, + ACTIONS(957), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159432,109 +160610,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50600] = 5, + [51063] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1844), 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, + ACTIONS(4354), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(4360), 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_as, - [50653] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4396), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4398), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4426), 1, + ACTIONS(4448), 1, anon_sym_EQ, - ACTIONS(3930), 2, + ACTIONS(3912), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4424), 10, + ACTIONS(4446), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159545,15 +160675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50740] = 5, + [51150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159569,7 +160699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159593,15 +160723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50793] = 5, + [51203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1847), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(1013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159617,7 +160747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1043), 23, + ACTIONS(1015), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159641,62 +160771,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50846] = 23, + [51256] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1469), 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(1467), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3822), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3824), 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, + [51309] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4386), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4428), 1, - anon_sym_SEMI, - ACTIONS(4430), 1, - anon_sym_else, - ACTIONS(4094), 2, + ACTIONS(4448), 1, + anon_sym_EQ, + ACTIONS(4058), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4446), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159707,37 +160884,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50935] = 5, + [51396] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1849), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4000), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + ACTIONS(4366), 1, + anon_sym_as, + ACTIONS(4380), 1, anon_sym_CARET, + ACTIONS(4382), 1, anon_sym_AMP, + ACTIONS(4384), 1, anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_AMP_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4394), 1, + anon_sym_DOT_DOT, + ACTIONS(4448), 1, + anon_sym_EQ, + ACTIONS(3966), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4356), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 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(3998), 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(1862), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 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(4446), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159748,68 +160949,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50988] = 22, + [51483] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4098), 1, + STATE(1863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3876), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4432), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1850), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT_DOT, + ACTIONS(3874), 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, @@ -159820,15 +160995,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51075] = 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, + [51544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1851), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159844,7 +161025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(1055), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159868,15 +161049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51128] = 5, + [51597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1852), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3796), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159892,7 +161073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3794), 23, + ACTIONS(1047), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159916,62 +161097,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51181] = 23, + [51650] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(1179), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4434), 1, - anon_sym_RPAREN, - ACTIONS(4436), 1, + ACTIONS(4370), 1, anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159982,62 +161163,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51270] = 23, + [51739] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4450), 1, + anon_sym_RPAREN, + ACTIONS(4452), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160048,37 +161229,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51359] = 5, + [51828] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1855), 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, + ACTIONS(293), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 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(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160089,22 +161295,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, - [51412] = 5, + [51917] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1856), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4046), 15, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160120,7 +161319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4044), 23, + ACTIONS(3916), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160144,62 +161343,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51465] = 23, + [51970] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4350), 1, + ACTIONS(4416), 1, anon_sym_EQ, - ACTIONS(4356), 1, - anon_sym_DOT_DOT, - ACTIONS(4438), 1, + ACTIONS(4454), 1, anon_sym_LBRACE, - STATE(1464), 1, + ACTIONS(4456), 1, + anon_sym_DOT_DOT, + STATE(1537), 1, sym_match_block, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4358), 2, + ACTIONS(4458), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4348), 10, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160210,15 +161409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51554] = 5, + [52059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160234,7 +161433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4022), 23, + ACTIONS(3944), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160258,62 +161457,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51607] = 23, + [52112] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1347), 1, - anon_sym_RPAREN, - ACTIONS(3818), 1, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4362), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160324,122 +161523,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51696] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [52201] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - sym_identifier, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_STAR, - ACTIONS(4302), 1, - anon_sym_COLON_COLON, - ACTIONS(4306), 1, - sym_metavariable, - ACTIONS(4440), 1, - anon_sym_RBRACE, - STATE(2513), 1, - sym_scoped_identifier, - STATE(3424), 1, - sym__use_clause, - STATE(3505), 1, - sym_bracketed_type, - STATE(3759), 1, - sym_generic_type_with_turbofish, - STATE(1860), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4304), 3, - sym_self, - sym_super, - sym_crate, - STATE(3086), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4298), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [51773] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + ACTIONS(4460), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160450,61 +161588,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51862] = 22, + [52288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3986), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4442), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1862), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_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, @@ -160515,61 +161629,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51949] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52341] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(1087), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4444), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1863), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160580,21 +161702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52036] = 8, + [52430] = 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(1864), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4028), 14, + ACTIONS(4084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160608,10 +161724,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(4026), 21, + ACTIONS(4082), 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, @@ -160631,62 +161750,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52095] = 23, + [52483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1315), 1, - anon_sym_RPAREN, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1877), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4362), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1865), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, @@ -160697,15 +161791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52184] = 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, + [52536] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1866), 2, + ACTIONS(4354), 1, + anon_sym_LBRACK, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4364), 1, + anon_sym_DOT, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4058), 15, + ACTIONS(3852), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160719,13 +161826,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(4056), 23, + ACTIONS(3848), 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, @@ -160745,62 +161849,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52237] = 23, + [52595] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4446), 1, + ACTIONS(4462), 1, anon_sym_SEMI, - ACTIONS(4448), 1, + ACTIONS(4464), 1, anon_sym_else, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160811,37 +161915,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52326] = 5, + [52684] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1868), 2, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4062), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [52773] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1347), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4060), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1881), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160852,69 +162047,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, - [52379] = 23, + [52862] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4466), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4468), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160925,62 +162113,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52468] = 23, + [52951] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1317), 1, - anon_sym_RPAREN, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4362), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4470), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160991,62 +162179,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52557] = 23, + [53040] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4450), 1, - anon_sym_RBRACE, - ACTIONS(4094), 2, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4472), 1, + anon_sym_RPAREN, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161057,62 +162245,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52646] = 23, + [53129] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4452), 1, + ACTIONS(4474), 1, anon_sym_SEMI, - ACTIONS(4454), 1, + ACTIONS(4476), 1, anon_sym_else, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161123,62 +162311,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52735] = 23, + [53218] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4478), 1, anon_sym_SEMI, - ACTIONS(4456), 1, - anon_sym_RBRACE, - ACTIONS(4094), 2, + ACTIONS(4480), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161189,62 +162377,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52824] = 23, + [53307] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4362), 1, + ACTIONS(4482), 1, + anon_sym_RBRACE, + ACTIONS(4484), 1, anon_sym_COMMA, - ACTIONS(4458), 1, - anon_sym_RPAREN, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161255,62 +162443,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52913] = 23, + [53396] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, + ACTIONS(4486), 1, anon_sym_SEMI, - ACTIONS(4462), 1, + ACTIONS(4488), 1, anon_sym_else, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161321,85 +162509,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53002] = 5, + [53485] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1876), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4066), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(301), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_CARET, + ACTIONS(4126), 1, anon_sym_AMP, + ACTIONS(4128), 1, anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4064), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53055] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1877), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4070), 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(4068), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161410,69 +162575,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53108] = 23, + [53574] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(399), 2, anon_sym_EQ, - ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4464), 1, - anon_sym_SEMI, - ACTIONS(4466), 1, - anon_sym_else, - ACTIONS(4094), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(397), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161483,62 +162635,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53197] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53655] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4362), 1, - anon_sym_COMMA, - ACTIONS(4468), 1, - anon_sym_RPAREN, - ACTIONS(4094), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161549,37 +162701,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53286] = 5, + [53740] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1880), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4074), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4402), 1, anon_sym_CARET, + ACTIONS(4404), 1, anon_sym_AMP, + ACTIONS(4406), 1, anon_sym_PIPE, + ACTIONS(4408), 1, + anon_sym_AMP_AMP, + ACTIONS(4410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4416), 1, + anon_sym_EQ, + ACTIONS(4456), 1, + anon_sym_DOT_DOT, + ACTIONS(4490), 1, + anon_sym_LBRACE, + STATE(477), 1, + sym_match_block, + ACTIONS(4398), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4072), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4458), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1892), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161590,69 +162767,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53339] = 23, + [53829] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4148), 1, + anon_sym_EQ, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4424), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4146), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161663,54 +162831,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53428] = 19, + [53914] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(395), 2, - anon_sym_EQ, + ACTIONS(4422), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - STATE(1882), 2, + ACTIONS(4424), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(393), 14, + ACTIONS(4118), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -161723,62 +162895,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53509] = 21, + [53999] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3818), 1, + ACTIONS(337), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4374), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4138), 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(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161789,62 +162961,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53594] = 23, + [54088] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4350), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4356), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4470), 1, - anon_sym_LBRACE, - STATE(485), 1, - sym_match_block, - ACTIONS(4332), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4358), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4348), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161855,60 +163027,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53683] = 21, + [54177] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4143), 1, - anon_sym_EQ, - ACTIONS(4336), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4374), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4492), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4141), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161919,60 +163093,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53768] = 21, + [54266] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(309), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4168), 1, - anon_sym_EQ, - ACTIONS(4336), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4374), 1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4376), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1886), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4166), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161983,62 +163159,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53853] = 23, + [54355] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4416), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4456), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4494), 1, + anon_sym_LBRACE, + STATE(1823), 1, + sym_match_block, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4458), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162049,62 +163225,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53942] = 23, + [54444] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, + ACTIONS(311), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162115,62 +163291,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54031] = 23, + [54533] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4472), 1, - anon_sym_RBRACE, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162181,62 +163357,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54120] = 23, + [54622] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, + ACTIONS(313), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162247,62 +163423,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54209] = 23, + [54711] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4340), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4342), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4344), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4350), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4356), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4474), 1, - anon_sym_LBRACE, - STATE(1806), 1, - sym_match_block, - ACTIONS(4332), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4496), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4346), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4354), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4358), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1891), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4352), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4348), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162313,62 +163489,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54298] = 23, + [54800] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(317), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162379,62 +163555,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54387] = 23, + [54889] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, + ACTIONS(319), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162445,62 +163621,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54476] = 23, + [54978] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4254), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4266), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4476), 1, - anon_sym_RBRACE, - ACTIONS(4094), 2, + ACTIONS(4500), 1, + anon_sym_AMP_AMP, + ACTIONS(4242), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4268), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + ACTIONS(4498), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4262), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4258), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162511,62 +163686,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54565] = 23, + [55065] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, + ACTIONS(321), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [55154] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4502), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162577,62 +163818,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54654] = 23, + [55243] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, + ACTIONS(325), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162643,62 +163884,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54743] = 23, + [55332] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(327), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162709,62 +163950,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54832] = 23, + [55421] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4478), 1, - anon_sym_RBRACE, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + ACTIONS(4504), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162775,62 +164015,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54921] = 23, + [55508] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1899), 2, + ACTIONS(4506), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162841,62 +164080,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55010] = 23, + [55595] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(329), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1900), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162907,62 +164146,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55099] = 23, + [55684] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4508), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1901), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162973,62 +164212,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55188] = 23, + [55773] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4480), 1, - anon_sym_RBRACE, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1902), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163039,62 +164278,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55277] = 23, + [55862] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(335), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1903), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163105,62 +164344,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55366] = 23, + [55951] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, + ACTIONS(303), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163171,61 +164410,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55455] = 22, + [56040] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4510), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4482), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1905), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163236,62 +164476,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55542] = 23, + [56129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4060), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4058), 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(1906), 2, + anon_sym_as, + [56182] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(1459), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 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, @@ -163302,62 +164565,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55631] = 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, + [56235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4206), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4484), 1, - anon_sym_RBRACE, - ACTIONS(4094), 2, + ACTIONS(1457), 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, + [56288] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4064), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4104), 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(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4062), 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(1907), 2, + anon_sym_as, + [56341] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4002), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4000), 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(4126), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56394] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1924), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4014), 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(4012), 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, @@ -163368,15 +164757,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55720] = 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, + [56447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1908), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4080), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163392,7 +164788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4078), 23, + ACTIONS(4024), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163416,46 +164812,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55773] = 17, + [56500] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(4292), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - ACTIONS(4296), 1, + ACTIONS(4320), 1, anon_sym_STAR, - ACTIONS(4302), 1, + ACTIONS(4326), 1, anon_sym_COLON_COLON, - ACTIONS(4306), 1, + ACTIONS(4330), 1, sym_metavariable, - ACTIONS(4486), 1, + ACTIONS(4512), 1, anon_sym_RBRACE, - STATE(2513), 1, + STATE(2562), 1, sym_scoped_identifier, - STATE(3424), 1, + STATE(3468), 1, sym__use_clause, - STATE(3505), 1, - sym_bracketed_type, - STATE(3759), 1, + STATE(3653), 1, sym_generic_type_with_turbofish, - STATE(1909), 2, + STATE(3666), 1, + sym_bracketed_type, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4304), 3, + ACTIONS(4328), 3, sym_self, sym_super, sym_crate, - STATE(3086), 4, + STATE(3067), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4298), 20, + ACTIONS(4322), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -163476,62 +164872,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [55850] = 23, + [56577] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4488), 1, - anon_sym_SEMI, - ACTIONS(4490), 1, - anon_sym_else, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1910), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3818), 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, @@ -163542,62 +164913,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55939] = 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, + [56630] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4492), 1, - anon_sym_RBRACE, - ACTIONS(4494), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1911), 2, + ACTIONS(4514), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163608,15 +164985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56028] = 5, + [56717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1912), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4088), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163632,7 +165009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4086), 23, + ACTIONS(3836), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163656,61 +165033,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56081] = 22, + [56770] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4496), 2, + ACTIONS(4516), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1913), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163721,15 +165098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56168] = 5, + [56857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1914), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 15, + ACTIONS(3842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163745,7 +165122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3790), 23, + ACTIONS(3840), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163769,127 +165146,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56221] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_DOT, - ACTIONS(3826), 1, - anon_sym_as, - ACTIONS(4098), 1, - anon_sym_CARET, - ACTIONS(4100), 1, - anon_sym_AMP, - ACTIONS(4102), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_SEMI, - ACTIONS(4500), 1, - anon_sym_else, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1915), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4096), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56310] = 22, + [56910] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4402), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4404), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4408), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4410), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4416), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4456), 1, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4518), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_match_block, + ACTIONS(4398), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4420), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4458), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4502), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1916), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4414), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163900,61 +165212,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56397] = 22, + [56999] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4504), 2, + ACTIONS(4520), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1917), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163965,48 +165277,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56484] = 15, + [57086] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4386), 2, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4522), 1, + anon_sym_SEMI, + ACTIONS(4524), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1918), 2, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3820), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3816), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164017,66 +165343,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, - [56557] = 22, + [57175] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4506), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4526), 1, + anon_sym_RBRACE, + ACTIONS(4528), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1919), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164087,60 +165409,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56643] = 22, + [57264] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_DOT_DOT, - ACTIONS(4508), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4208), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1920), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(3876), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3874), 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, @@ -164151,60 +165461,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56729] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57337] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3501), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 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, + [57411] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4510), 1, + ACTIONS(4530), 1, anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 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(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164215,60 +165589,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56815] = 22, + [57497] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4512), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4532), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 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(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164279,60 +165653,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56901] = 22, + [57583] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4534), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1923), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164343,60 +165717,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56987] = 22, + [57669] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4514), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4536), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1924), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164407,60 +165781,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57073] = 22, + [57755] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4516), 1, + ACTIONS(4538), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1925), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164471,60 +165845,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57159] = 22, + [57841] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4518), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4540), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164535,60 +165909,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57245] = 22, + [57927] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4520), 1, + ACTIONS(4542), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1927), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164599,60 +165973,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57331] = 22, + [58013] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4448), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4544), 1, anon_sym_DOT_DOT, - ACTIONS(4522), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4372), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1928), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4446), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164663,60 +166036,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57417] = 22, + [58097] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4524), 1, + ACTIONS(4548), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1929), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164727,60 +166100,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57503] = 22, + [58183] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4526), 1, + ACTIONS(4550), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1930), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164791,60 +166164,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57589] = 22, + [58269] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4362), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4552), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164855,60 +166228,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57675] = 22, + [58355] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4528), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4554), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1932), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164919,59 +166292,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57761] = 21, + [58441] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4398), 1, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4530), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4556), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4414), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4532), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1933), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4424), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164982,60 +166356,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57845] = 22, + [58527] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4534), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4558), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165046,60 +166420,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57931] = 22, + [58613] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4536), 1, + ACTIONS(4560), 1, anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165110,60 +166484,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58017] = 22, + [58699] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4448), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4498), 1, + anon_sym_EQ_GT, + ACTIONS(4544), 1, anon_sym_DOT_DOT, - ACTIONS(4538), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4562), 1, + anon_sym_AMP_AMP, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1936), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4446), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165174,60 +166548,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58103] = 22, + [58785] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4540), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4564), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 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(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165238,44 +166612,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58189] = 16, + [58871] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(4292), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - ACTIONS(4296), 1, + ACTIONS(4320), 1, anon_sym_STAR, - ACTIONS(4302), 1, + ACTIONS(4326), 1, anon_sym_COLON_COLON, - ACTIONS(4306), 1, + ACTIONS(4330), 1, sym_metavariable, - STATE(2513), 1, + STATE(2562), 1, sym_scoped_identifier, - STATE(3505), 1, + STATE(3468), 1, + sym__use_clause, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, sym_bracketed_type, - STATE(3742), 1, + STATE(1955), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 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, + [58945] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3521), 1, sym__use_clause, - STATE(3759), 1, + STATE(3653), 1, sym_generic_type_with_turbofish, - STATE(1938), 2, + STATE(3666), 1, + sym_bracketed_type, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4304), 3, + ACTIONS(4328), 3, sym_self, sym_super, sym_crate, - STATE(3086), 4, + STATE(3067), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4298), 20, + ACTIONS(4322), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165296,60 +166728,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [58263] = 22, + [59019] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4542), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4566), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165360,59 +166792,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58349] = 21, + [59105] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4390), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4398), 1, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4530), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 2, + ACTIONS(4568), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4412), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4532), 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(4388), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4424), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165423,44 +166856,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58433] = 16, + [59191] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, + ACTIONS(4314), 1, sym_identifier, - ACTIONS(4292), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - ACTIONS(4296), 1, + ACTIONS(4320), 1, anon_sym_STAR, - ACTIONS(4302), 1, + ACTIONS(4326), 1, anon_sym_COLON_COLON, - ACTIONS(4306), 1, + ACTIONS(4330), 1, sym_metavariable, - STATE(2513), 1, + STATE(2562), 1, sym_scoped_identifier, - STATE(3505), 1, - sym_bracketed_type, - STATE(3558), 1, + STATE(3551), 1, sym__use_clause, - STATE(3759), 1, + STATE(3653), 1, sym_generic_type_with_turbofish, - STATE(1941), 2, + STATE(3666), 1, + sym_bracketed_type, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4304), 3, + ACTIONS(4328), 3, sym_self, sym_super, sym_crate, - STATE(3086), 4, + STATE(3067), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4298), 20, + ACTIONS(4322), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165481,60 +166914,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [58507] = 22, + [59265] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4544), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4570), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 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(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165545,60 +166978,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58593] = 22, + [59351] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_STAR, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + sym_metavariable, + STATE(2562), 1, + sym_scoped_identifier, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3666), 1, + sym_bracketed_type, + STATE(3744), 1, + sym__use_clause, + STATE(1961), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4328), 3, + sym_self, + sym_super, + sym_crate, + STATE(3067), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4322), 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, + [59425] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4546), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4572), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165609,60 +167100,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58679] = 22, + [59511] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4548), 1, + ACTIONS(4574), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165673,60 +167164,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58765] = 22, + [59597] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4354), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4378), 1, - anon_sym_EQ_GT, - ACTIONS(4390), 1, + ACTIONS(4380), 1, anon_sym_CARET, - ACTIONS(4392), 1, + ACTIONS(4382), 1, anon_sym_AMP, - ACTIONS(4394), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4398), 1, + ACTIONS(4388), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4448), 1, anon_sym_EQ, - ACTIONS(4530), 1, + ACTIONS(4544), 1, anon_sym_DOT_DOT, - ACTIONS(4550), 1, - anon_sym_AMP_AMP, - ACTIONS(4386), 2, + ACTIONS(4356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4400), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4404), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4532), 2, + ACTIONS(4432), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1945), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4388), 3, + ACTIONS(4358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4402), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4424), 10, + ACTIONS(4446), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165737,60 +167227,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58851] = 22, + [59681] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4552), 1, + ACTIONS(4576), 1, anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1946), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165801,118 +167291,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58937] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59767] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - sym_identifier, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_STAR, - ACTIONS(4302), 1, - anon_sym_COLON_COLON, - ACTIONS(4306), 1, - sym_metavariable, - STATE(2513), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_bracketed_type, - STATE(3630), 1, - sym__use_clause, - STATE(3759), 1, - sym_generic_type_with_turbofish, - STATE(1947), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4304), 3, - sym_self, - sym_super, - sym_crate, - STATE(3086), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4298), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [59011] = 22, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [59853] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4554), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4578), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165923,118 +167419,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59097] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59939] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - sym_identifier, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_STAR, - ACTIONS(4302), 1, - anon_sym_COLON_COLON, - ACTIONS(4306), 1, - sym_metavariable, - STATE(2513), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_bracketed_type, - STATE(3599), 1, - sym__use_clause, - STATE(3759), 1, - sym_generic_type_with_turbofish, - STATE(1949), 2, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(3854), 1, + anon_sym_QMARK, + ACTIONS(3856), 1, + anon_sym_DOT, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_CARET, + ACTIONS(4126), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(4130), 1, + anon_sym_AMP_AMP, + ACTIONS(4132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4370), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4140), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4304), 3, - sym_self, - sym_super, - sym_crate, - STATE(3086), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4298), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [59171] = 22, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4150), 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, + [60025] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4556), 1, - anon_sym_COMMA, - ACTIONS(4094), 2, + ACTIONS(4580), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 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(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166045,60 +167547,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59257] = 22, + [60111] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4558), 1, - anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4582), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 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(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166109,60 +167611,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59343] = 22, + [60197] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4584), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 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(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166173,118 +167675,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59429] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - sym_identifier, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_STAR, - ACTIONS(4302), 1, - anon_sym_COLON_COLON, - ACTIONS(4306), 1, - sym_metavariable, - STATE(2513), 1, - sym_scoped_identifier, - STATE(3424), 1, - sym__use_clause, - STATE(3505), 1, - sym_bracketed_type, - STATE(3759), 1, - sym_generic_type_with_turbofish, - STATE(1953), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4304), 3, - sym_self, - sym_super, - sym_crate, - STATE(3086), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4298), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [59503] = 22, + [60283] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4562), 1, + ACTIONS(4586), 1, anon_sym_SEMI, - ACTIONS(4094), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1954), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166295,60 +167739,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59589] = 22, + [60369] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3818), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3854), 1, anon_sym_QMARK, - ACTIONS(3824), 1, + ACTIONS(3856), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(4098), 1, + ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4100), 1, + ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4102), 1, + ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4116), 1, + ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4118), 1, + ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4128), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4564), 1, - anon_sym_RBRACK, - ACTIONS(4094), 2, + ACTIONS(4588), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4104), 2, + ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4124), 2, + ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4208), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1955), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4122), 4, + ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 10, + ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166359,47 +167803,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59675] = 17, + [60455] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, sym_identifier, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - STATE(3126), 1, + STATE(3174), 1, sym_scoped_type_identifier, - STATE(3431), 1, + STATE(3466), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1956), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166417,47 +167861,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59750] = 17, + [60530] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4578), 1, + ACTIONS(4602), 1, sym_identifier, - STATE(3101), 1, + STATE(3165), 1, sym_scoped_type_identifier, - STATE(3200), 1, + STATE(3429), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1957), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166475,47 +167919,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59825] = 17, + [60605] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4580), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(2865), 1, + STATE(3178), 1, sym_scoped_type_identifier, - STATE(3221), 1, + STATE(3474), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1958), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166533,47 +167977,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59900] = 17, + [60680] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4582), 1, + ACTIONS(4606), 1, sym_identifier, - STATE(3135), 1, + STATE(2953), 1, sym_scoped_type_identifier, - STATE(3436), 1, + STATE(3239), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1959), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166591,47 +168035,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59975] = 17, + [60755] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4584), 1, + ACTIONS(4608), 1, sym_identifier, - STATE(2928), 1, + STATE(3155), 1, sym_scoped_type_identifier, - STATE(3341), 1, + STATE(3410), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1960), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166649,47 +168093,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60050] = 17, + [60830] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4586), 1, + ACTIONS(4610), 1, sym_identifier, - STATE(2995), 1, + STATE(3168), 1, sym_scoped_type_identifier, - STATE(3336), 1, + STATE(3458), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1961), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166707,47 +168151,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60125] = 17, + [60905] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4588), 1, + ACTIONS(4612), 1, sym_identifier, - STATE(3112), 1, + STATE(3094), 1, sym_scoped_type_identifier, - STATE(3425), 1, + STATE(3289), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1962), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166765,47 +168209,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60200] = 17, + [60980] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3860), 1, + ACTIONS(3868), 1, anon_sym_where, - ACTIONS(4570), 1, + ACTIONS(4594), 1, anon_sym_COLON_COLON, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_metavariable, - ACTIONS(4590), 1, + ACTIONS(4614), 1, sym_identifier, - STATE(3124), 1, + STATE(3172), 1, sym_scoped_type_identifier, - STATE(3429), 1, + STATE(3464), 1, sym_generic_type, - STATE(3479), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3608), 1, + STATE(3643), 1, sym_generic_type_with_turbofish, - STATE(3634), 1, + STATE(3670), 1, sym_bracketed_type, - STATE(1963), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 3, + ACTIONS(3866), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4572), 3, + ACTIONS(4596), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4574), 3, + ACTIONS(4598), 3, sym_self, sym_super, sym_crate, - ACTIONS(4568), 17, + ACTIONS(4592), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166823,19 +168267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60275] = 5, + [61055] = 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(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, @@ -166865,19 +168309,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60322] = 5, + [61102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + STATE(1983), 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, @@ -166907,19 +168351,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60369] = 5, + [61149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1966), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4602), 3, + ACTIONS(4626), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4600), 29, + ACTIONS(4624), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166949,35 +168393,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60416] = 13, + [61196] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3696), 1, - sym_bracketed_type, - STATE(3763), 1, + STATE(3547), 1, sym_attribute, - STATE(3770), 1, + STATE(3732), 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(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166998,35 +168442,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60478] = 13, + [61258] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3638), 1, + STATE(3645), 1, sym_attribute, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1968), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167047,35 +168491,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60540] = 13, + [61320] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3474), 1, + STATE(3536), 1, sym_attribute, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1969), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167096,35 +168540,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60602] = 13, + [61382] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3696), 1, - sym_bracketed_type, - STATE(3732), 1, + STATE(3626), 1, sym_attribute, - STATE(3770), 1, + STATE(3732), 1, + sym_bracketed_type, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1970), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167145,35 +168589,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60664] = 13, + [61444] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3512), 1, + STATE(3660), 1, sym_attribute, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1971), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167194,35 +168638,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60726] = 13, + [61506] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3624), 1, + STATE(3557), 1, sym_attribute, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1972), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167243,35 +168687,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60788] = 13, + [61568] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3507), 1, - sym_attribute, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3742), 1, + sym_attribute, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1973), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167292,35 +168736,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60850] = 13, + [61630] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3546), 1, + STATE(3688), 1, sym_attribute, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1974), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167341,35 +168785,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60912] = 13, + [61692] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2098), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 1, + ACTIONS(4628), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4634), 1, sym_metavariable, - STATE(2337), 1, + STATE(2374), 1, sym_scoped_identifier, - STATE(3587), 1, + STATE(3602), 1, sym_attribute, - STATE(3696), 1, + STATE(3732), 1, sym_bracketed_type, - STATE(3770), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1975), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 3, + ACTIONS(4632), 3, sym_self, sym_super, sym_crate, - ACTIONS(4606), 20, + ACTIONS(4630), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167390,33 +168834,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60974] = 12, + [61754] = 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, sym_identifier, - ACTIONS(4616), 1, + ACTIONS(4640), 1, anon_sym_COLON_COLON, - ACTIONS(4620), 1, + ACTIONS(4644), 1, sym_metavariable, - STATE(3247), 1, + STATE(3197), 1, sym_scoped_identifier, - STATE(3505), 1, - sym_bracketed_type, - STATE(3759), 1, + STATE(3653), 1, sym_generic_type_with_turbofish, - STATE(1976), 2, + STATE(3666), 1, + sym_bracketed_type, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(4618), 3, + ACTIONS(4642), 3, sym_self, sym_super, sym_crate, - ACTIONS(4614), 20, + ACTIONS(4638), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167437,33 +168881,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61033] = 12, + [61813] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4616), 1, + ACTIONS(4640), 1, anon_sym_COLON_COLON, - ACTIONS(4622), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4652), 1, sym_metavariable, - STATE(3352), 1, + STATE(3306), 1, sym_scoped_identifier, - STATE(3505), 1, - sym_bracketed_type, - STATE(3759), 1, + STATE(3653), 1, sym_generic_type_with_turbofish, - STATE(1977), 2, + STATE(3666), 1, + sym_bracketed_type, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4650), 3, sym_self, sym_super, sym_crate, - ACTIONS(4624), 20, + ACTIONS(4648), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167484,17 +168928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61092] = 5, + [61872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(993), 1, + ACTIONS(1013), 1, anon_sym_DOT_DOT, - STATE(1978), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 20, + ACTIONS(1015), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167515,17 +168959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61128] = 5, + [61908] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, + ACTIONS(951), 1, anon_sym_DOT_DOT, - STATE(1979), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 20, + ACTIONS(953), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167546,20 +168990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61164] = 6, + [61944] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3502), 1, + ACTIONS(3536), 1, anon_sym_COLON, - ACTIONS(3506), 2, + ACTIONS(3540), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1980), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 17, + ACTIONS(3534), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167577,20 +169021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61201] = 6, + [61981] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3494), 1, + ACTIONS(3503), 1, anon_sym_COLON, - ACTIONS(3498), 2, + ACTIONS(3507), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1981), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 17, + ACTIONS(3501), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167608,20 +169052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61238] = 6, + [62018] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3464), 1, + ACTIONS(3544), 1, anon_sym_COLON, - ACTIONS(3468), 2, + ACTIONS(3548), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1982), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3462), 17, + ACTIONS(3542), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167639,87 +169083,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61275] = 6, + [62055] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3522), 1, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, anon_sym_COLON, - ACTIONS(3526), 2, + ACTIONS(4662), 1, anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(4670), 1, anon_sym_COLON_COLON, - STATE(1983), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(2030), 1, + sym_type_arguments, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, + ACTIONS(4654), 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, - [61312] = 14, + anon_sym_in, + [62108] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4634), 1, - anon_sym_LBRACE, - ACTIONS(4636), 1, + ACTIONS(3528), 1, anon_sym_COLON, - ACTIONS(4638), 1, + ACTIONS(3532), 2, anon_sym_BANG, - ACTIONS(4640), 1, - anon_sym_AT, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(4646), 1, anon_sym_COLON_COLON, - ACTIONS(4648), 1, - anon_sym_LT2, - STATE(2012), 1, - sym_type_arguments, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1984), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 9, + ACTIONS(3526), 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, - [61365] = 5, + anon_sym_LT2, + [62145] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3720), 1, + ACTIONS(3686), 1, anon_sym_COLON, - STATE(1985), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3718), 18, + ACTIONS(3684), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167738,17 +169182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61399] = 5, + [62179] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3668), 1, + ACTIONS(3626), 1, anon_sym_COLON, - STATE(1986), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 18, + ACTIONS(3624), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167767,22 +169211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61433] = 6, + [62213] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1987), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 3, + ACTIONS(3534), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3506), 14, + ACTIONS(3540), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167797,17 +169241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61469] = 5, + [62249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3772), 1, + ACTIONS(3800), 1, anon_sym_COLON, - STATE(1988), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 18, + ACTIONS(3798), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167826,28 +169270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61503] = 10, + [62283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - STATE(1989), 2, + ACTIONS(3784), 1, + anon_sym_COLON, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 13, + ACTIONS(3782), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -167857,55 +169292,63 @@ 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, - [61547] = 6, + anon_sym_in, + [62317] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1990), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3462), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3468), 14, + ACTIONS(3458), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [61583] = 6, + [62361] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 2, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1991), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 3, + ACTIONS(3542), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3498), 14, + ACTIONS(3548), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167920,27 +169363,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61619] = 10, + [62397] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2077), 1, + STATE(2098), 1, sym_parameters, - STATE(1992), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 13, + ACTIONS(3452), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167954,22 +169397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61663] = 6, + [62441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 2, + ACTIONS(3530), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1993), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 3, + ACTIONS(3526), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3526), 14, + ACTIONS(3532), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167984,27 +169427,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61699] = 10, + [62477] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2077), 1, + STATE(2098), 1, sym_parameters, - STATE(1994), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 13, + ACTIONS(3428), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168018,74 +169461,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61743] = 5, + [62521] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, + ACTIONS(3505), 2, anon_sym_COLON, - STATE(1995), 2, + anon_sym_DOT_DOT, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3501), 3, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_for, - anon_sym_where, - anon_sym_else, - anon_sym_in, - [61777] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1996), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3492), 18, + 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_COLON, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - anon_sym_LT2, - [61808] = 5, + anon_sym_in, + [62557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 2, + ACTIONS(3505), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3468), 16, + ACTIONS(3507), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -168102,18 +169519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61841] = 5, + [62590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 2, + ACTIONS(3530), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1998), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 16, + ACTIONS(3532), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -168130,83 +169547,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61874] = 14, + [62623] = 14, ACTIONS(37), 1, anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, + ACTIONS(1117), 1, anon_sym_DASH, - ACTIONS(1275), 1, + ACTIONS(1167), 1, aux_sym_string_literal_token1, - ACTIONS(1285), 1, + ACTIONS(1177), 1, sym__raw_string_literal_start, - ACTIONS(1603), 1, + ACTIONS(1617), 1, anon_sym_LBRACE, - ACTIONS(4654), 1, + ACTIONS(4678), 1, sym_identifier, - STATE(3736), 1, + STATE(3770), 1, sym_label, - ACTIONS(1277), 2, + ACTIONS(1169), 2, anon_sym_true, anon_sym_false, - STATE(1999), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(1629), 3, + ACTIONS(1643), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(3110), 3, + STATE(3039), 3, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - STATE(3323), 3, + STATE(3417), 3, sym_block, sym__literal, sym_negative_literal, - [61925] = 5, + [62674] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2017), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3501), 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, + [62705] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2000), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4680), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3469), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [61958] = 5, + [62746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2001), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3540), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -168223,55 +169671,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61991] = 9, + [62779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4656), 1, - anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - STATE(2002), 2, + ACTIONS(3546), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3446), 13, + ACTIONS(3548), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [62032] = 8, + anon_sym_in, + [62812] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2099), 1, sym_parameters, - STATE(2003), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 13, + ACTIONS(3509), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168285,60 +169729,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62070] = 8, + [62850] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2078), 1, - sym_parameters, - STATE(2004), 2, + ACTIONS(4684), 1, + anon_sym_const, + ACTIONS(4686), 1, + anon_sym_enum, + ACTIONS(4688), 1, + anon_sym_fn, + ACTIONS(4690), 1, + anon_sym_mod, + ACTIONS(4692), 1, + anon_sym_static, + ACTIONS(4694), 1, + anon_sym_struct, + ACTIONS(4696), 1, + anon_sym_trait, + ACTIONS(4698), 1, + anon_sym_type, + ACTIONS(4700), 1, + anon_sym_union, + ACTIONS(4702), 1, + anon_sym_unsafe, + ACTIONS(4704), 1, + anon_sym_use, + ACTIONS(4706), 1, + anon_sym_extern, + STATE(2281), 1, + sym_extern_modifier, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(3675), 1, + sym_function_modifiers, + ACTIONS(4682), 2, + anon_sym_async, + anon_sym_default, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 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, - [62108] = 11, + [62910] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4660), 1, + ACTIONS(4710), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4712), 1, anon_sym_BANG, - ACTIONS(4664), 1, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - ACTIONS(4668), 1, + ACTIONS(4718), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2024), 1, sym_type_arguments, - ACTIONS(4666), 2, + ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2005), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 9, + ACTIONS(4708), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168348,17 +169803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62152] = 5, + [62954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3642), 1, + ACTIONS(3704), 1, anon_sym_COLON, - STATE(2006), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 16, + ACTIONS(3702), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168375,23 +169830,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62184] = 8, + [62986] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4720), 1, + anon_sym_const, + ACTIONS(4722), 1, + anon_sym_enum, + ACTIONS(4724), 1, + anon_sym_fn, + ACTIONS(4726), 1, + anon_sym_mod, + ACTIONS(4728), 1, + anon_sym_static, + ACTIONS(4730), 1, + anon_sym_struct, + ACTIONS(4732), 1, + anon_sym_trait, + ACTIONS(4734), 1, + anon_sym_type, + ACTIONS(4736), 1, + anon_sym_union, + ACTIONS(4738), 1, + anon_sym_unsafe, + ACTIONS(4740), 1, + anon_sym_use, + ACTIONS(4742), 1, + anon_sym_extern, + STATE(2240), 1, + sym_extern_modifier, + STATE(2317), 1, + aux_sym_function_modifiers_repeat1, + STATE(3792), 1, + sym_function_modifiers, + ACTIONS(4682), 2, + anon_sym_async, + anon_sym_default, + STATE(2025), 2, + sym_line_comment, + sym_block_comment, + [63046] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2099), 1, sym_parameters, - STATE(2007), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 13, + ACTIONS(3517), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168405,17 +169901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62222] = 5, + [63084] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3658), 1, - anon_sym_COLON, - STATE(2008), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2031), 1, + sym_type_arguments, + STATE(2099), 1, + sym_parameters, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 16, + ACTIONS(3513), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168426,104 +169928,60 @@ 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, - [62254] = 19, + [63122] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4672), 1, - anon_sym_const, - ACTIONS(4674), 1, - anon_sym_enum, - ACTIONS(4676), 1, - anon_sym_fn, - ACTIONS(4678), 1, - anon_sym_mod, - ACTIONS(4680), 1, - anon_sym_static, - ACTIONS(4682), 1, - anon_sym_struct, - ACTIONS(4684), 1, - anon_sym_trait, - ACTIONS(4686), 1, - anon_sym_type, - ACTIONS(4688), 1, - anon_sym_union, - ACTIONS(4690), 1, - anon_sym_unsafe, - ACTIONS(4692), 1, - anon_sym_use, - ACTIONS(4694), 1, - anon_sym_extern, - STATE(2263), 1, - sym_extern_modifier, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(3757), 1, - sym_function_modifiers, - ACTIONS(4670), 2, - anon_sym_async, - anon_sym_default, - STATE(2009), 2, - sym_line_comment, - sym_block_comment, - [62314] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4660), 1, + ACTIONS(4710), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4712), 1, anon_sym_BANG, - ACTIONS(4664), 1, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - ACTIONS(4696), 1, + ACTIONS(4744), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2024), 1, sym_type_arguments, - ACTIONS(4666), 2, + ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2010), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 3, + ACTIONS(4708), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3560), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [62360] = 8, + [63168] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2099), 1, sym_parameters, - STATE(2011), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 13, + ACTIONS(3475), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168537,17 +169995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62398] = 5, + [63206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3654), 1, + ACTIONS(3734), 1, anon_sym_COLON, - STATE(2012), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 16, + ACTIONS(3732), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168564,81 +170022,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62430] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4698), 1, - anon_sym_const, - ACTIONS(4700), 1, - anon_sym_enum, - ACTIONS(4702), 1, - anon_sym_fn, - ACTIONS(4704), 1, - anon_sym_mod, - ACTIONS(4706), 1, - anon_sym_static, - ACTIONS(4708), 1, - anon_sym_struct, - ACTIONS(4710), 1, - anon_sym_trait, - ACTIONS(4712), 1, - anon_sym_type, - ACTIONS(4714), 1, - anon_sym_union, - ACTIONS(4716), 1, - anon_sym_unsafe, - ACTIONS(4718), 1, - anon_sym_use, - ACTIONS(4720), 1, - anon_sym_extern, - STATE(2249), 1, - sym_extern_modifier, - STATE(2291), 1, - aux_sym_function_modifiers_repeat1, - STATE(3567), 1, - sym_function_modifiers, - ACTIONS(4670), 2, - anon_sym_async, - anon_sym_default, - STATE(2013), 2, - sym_line_comment, - sym_block_comment, - [62490] = 4, + [63238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + ACTIONS(3738), 1, + anon_sym_COLON, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3774), 16, + ACTIONS(3736), 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [62519] = 4, + [63270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 16, + ACTIONS(1055), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168655,105 +170074,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62548] = 6, + [63299] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4660), 1, anon_sym_COLON, - ACTIONS(4722), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(4746), 1, anon_sym_COLON_COLON, - STATE(2016), 2, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 14, + ACTIONS(4654), 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_as, - anon_sym_where, anon_sym_else, - [62581] = 10, + anon_sym_in, + [63340] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4636), 1, - anon_sym_COLON, - ACTIONS(4638), 1, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4724), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4748), 1, + anon_sym_LPAREN, + ACTIONS(4750), 1, + anon_sym_RBRACK, + ACTIONS(4753), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 2, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + ACTIONS(3452), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4654), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + STATE(2034), 2, + sym_line_comment, + sym_block_comment, + [63393] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 9, + ACTIONS(1467), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, anon_sym_in, - [62622] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4726), 1, - anon_sym_LPAREN, - STATE(2018), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4134), 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, - [62653] = 4, + [63422] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2019), 2, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 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, @@ -168763,20 +170194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62682] = 6, + [63455] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, + ACTIONS(3477), 1, anon_sym_COLON, - ACTIONS(4722), 1, + ACTIONS(4757), 1, anon_sym_COLON_COLON, - STATE(2020), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 14, + ACTIONS(3475), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168791,15 +170221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62715] = 4, + [63488] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2021), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 16, + ACTIONS(3760), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168816,88 +170246,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62744] = 16, + [63517] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, + ACTIONS(3452), 1, + anon_sym_PLUS, + ACTIONS(4654), 1, anon_sym_PIPE, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_LBRACE, - ACTIONS(4636), 1, + ACTIONS(4660), 1, anon_sym_COLON, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4640), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4642), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4728), 1, + ACTIONS(4759), 1, anon_sym_LPAREN, - ACTIONS(4730), 1, + ACTIONS(4761), 1, anon_sym_COLON_COLON, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2077), 1, + STATE(2098), 1, sym_parameters, - ACTIONS(4644), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2022), 2, + ACTIONS(4750), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + [63572] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3519), 1, + anon_sym_COLON, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, + ACTIONS(3517), 14, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [62797] = 6, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [63605] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4732), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - STATE(2023), 2, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 14, + ACTIONS(4708), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63648] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2042), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3610), 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, - [62830] = 6, + [63677] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - STATE(2024), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 14, + ACTIONS(1531), 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, @@ -168907,15 +170392,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62863] = 4, + anon_sym_in, + [63706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + ACTIONS(4767), 1, + anon_sym_LPAREN, + STATE(2044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4154), 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, + [63737] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3726), 16, + ACTIONS(1047), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168927,47 +170439,82 @@ 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, - [62892] = 6, + anon_sym_in, + [63766] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, anon_sym_COLON, - ACTIONS(4734), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4769), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_COLON_COLON, - STATE(2026), 2, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 14, + ACTIONS(3452), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [63819] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2047), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3628), 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, - [62925] = 4, + [63848] = 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(1481), 16, + ACTIONS(3786), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168979,26 +170526,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62954] = 4, + [63877] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2028), 2, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 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, @@ -169008,20 +170558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62983] = 6, + [63910] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(4722), 1, + ACTIONS(4763), 1, anon_sym_COLON_COLON, - STATE(2029), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 14, + ACTIONS(3509), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169036,15 +170585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63016] = 4, + [63943] = 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(3730), 16, + ACTIONS(3688), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169061,147 +170610,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63045] = 4, + [63972] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2031), 2, + ACTIONS(3515), 1, + anon_sym_COLON, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 16, + ACTIONS(3513), 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, - [63074] = 17, + [64005] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3436), 1, - anon_sym_PLUS, - ACTIONS(4630), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4708), 1, anon_sym_PIPE, - ACTIONS(4634), 1, - anon_sym_LBRACE, - ACTIONS(4636), 1, + ACTIONS(4710), 1, anon_sym_COLON, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4640), 1, - anon_sym_AT, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4736), 1, - anon_sym_LPAREN, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4738), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2032), 2, - sym_line_comment, - sym_block_comment, - [63129] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4662), 1, + ACTIONS(4712), 1, anon_sym_BANG, - ACTIONS(4664), 1, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - ACTIONS(4743), 1, + ACTIONS(4773), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2024), 1, sym_type_arguments, - ACTIONS(4666), 2, + ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2033), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3560), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63172] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_LBRACE, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4640), 1, - anon_sym_AT, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4738), 1, - anon_sym_RBRACK, - ACTIONS(4745), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - ACTIONS(3436), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4630), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2034), 2, - sym_line_comment, - sym_block_comment, - [63225] = 4, + [64049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3996), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169217,15 +170693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63253] = 4, + [64077] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3874), 15, + ACTIONS(4016), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169241,15 +170717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63281] = 4, + [64105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(4004), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169265,15 +170741,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63309] = 4, + [64133] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 15, + ACTIONS(4161), 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, + [64161] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2058), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3806), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169289,15 +170789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63337] = 4, + [64189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3880), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169313,47 +170813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63365] = 12, + [64217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4749), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2040), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63409] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 15, + ACTIONS(3814), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169369,15 +170837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63437] = 4, + [64245] = 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(3532), 15, + ACTIONS(3513), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169393,63 +170861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63465] = 4, + [64273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4106), 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, - [63493] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2044), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4110), 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, - [63521] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3844), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169465,36 +170885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63549] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2046), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4158), 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, - [63577] = 4, + [64301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, ACTIONS(3862), 15, @@ -169513,15 +170909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63605] = 4, + [64329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 15, + ACTIONS(3517), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169537,15 +170933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63633] = 4, + [64357] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3822), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169561,15 +170957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63661] = 4, + [64385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(4102), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169585,17 +170981,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63689] = 5, + [64413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4092), 1, + STATE(2067), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4167), 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, + [64441] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4775), 1, anon_sym_COLON_COLON, - STATE(2051), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(4136), 14, + ACTIONS(4156), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169610,15 +171030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [63719] = 4, + [64471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3978), 15, + ACTIONS(3475), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169634,15 +171054,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63747] = 4, + [64499] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2070), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4171), 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, + [64527] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 15, + ACTIONS(3509), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169658,15 +171102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63775] = 4, + [64555] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3910), 15, + ACTIONS(3866), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169682,15 +171126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63803] = 4, + [64583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2055), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(3884), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169706,15 +171150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63831] = 4, + [64611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 15, + ACTIONS(3888), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169730,15 +171174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63859] = 4, + [64639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 15, + ACTIONS(3892), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169754,15 +171198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63887] = 4, + [64667] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(3896), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169778,15 +171222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63915] = 4, + [64695] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 15, + ACTIONS(3908), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169802,15 +171246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63943] = 4, + [64723] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3902), 15, + ACTIONS(3810), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169826,15 +171270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63971] = 4, + [64751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 15, + ACTIONS(4110), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169850,15 +171294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63999] = 4, + [64779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 15, + ACTIONS(3978), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169874,15 +171318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64027] = 4, + [64807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(3988), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169898,15 +171342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64055] = 4, + [64835] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(3870), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169922,40 +171366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64083] = 5, + [64863] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_COLON_COLON, - STATE(2065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4136), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [64113] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3974), 15, + ACTIONS(3900), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169971,15 +171390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64141] = 4, + [64891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3982), 15, + ACTIONS(4074), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169995,15 +171414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64169] = 4, + [64919] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 15, + ACTIONS(4038), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170019,15 +171438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64197] = 4, + [64947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(4008), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170043,15 +171462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64225] = 4, + [64975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2070), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3898), 15, + ACTIONS(4106), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170067,15 +171486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64253] = 4, + [65003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2071), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(3858), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170091,15 +171510,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64281] = 4, + [65031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2072), 2, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(4156), 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, + [65061] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3802), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170115,46 +171559,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64309] = 8, + [65089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4664), 1, + ACTIONS(975), 1, anon_sym_DOT_DOT, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2073), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 9, + ACTIONS(977), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64344] = 6, + [65118] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4755), 1, + ACTIONS(4779), 1, anon_sym_pat, - STATE(176), 1, + STATE(186), 1, sym_fragment_specifier, - STATE(2074), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4753), 12, + ACTIONS(4777), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -170167,17 +171608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [64375] = 5, + [65149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, + ACTIONS(955), 1, anon_sym_DOT_DOT, - STATE(2075), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 13, + ACTIONS(957), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170191,41 +171632,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64404] = 5, + [65178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, - anon_sym_DASH_GT, - STATE(2076), 2, + ACTIONS(4783), 1, + anon_sym_DOT_DOT, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 13, + ACTIONS(4781), 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, - [64433] = 5, + anon_sym_in, + [65207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4763), 1, + ACTIONS(4785), 1, anon_sym_DASH_GT, - STATE(2077), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3670), 13, + ACTIONS(3764), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170239,17 +171680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64462] = 5, + [65236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4765), 1, + ACTIONS(4787), 1, anon_sym_DASH_GT, - STATE(2078), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 13, + ACTIONS(3790), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170263,17 +171704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64491] = 5, + [65265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, + ACTIONS(4789), 1, anon_sym_DASH_GT, - STATE(2079), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 13, + ACTIONS(3740), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170287,17 +171728,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64520] = 5, + [65294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, + ACTIONS(4791), 1, anon_sym_DASH_GT, - STATE(2080), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 13, + ACTIONS(3746), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170311,17 +171752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64549] = 5, + [65323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, + ACTIONS(4793), 1, anon_sym_DASH_GT, - STATE(2081), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 13, + ACTIONS(3752), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170335,65 +171776,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64578] = 5, + [65352] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(977), 1, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - STATE(2082), 2, + ACTIONS(4718), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(979), 13, + ACTIONS(4708), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64607] = 5, + [65387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_DOT_DOT, - STATE(2083), 2, + ACTIONS(4795), 1, + anon_sym_DASH_GT, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 13, + ACTIONS(3770), 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, - [64636] = 5, + [65416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4773), 1, + ACTIONS(4797), 1, anon_sym_DASH_GT, - STATE(2084), 2, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 13, + ACTIONS(3776), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170407,230 +171851,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64665] = 7, + [65445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4775), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2085), 2, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 4, + ACTIONS(4654), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3498), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - [64697] = 7, + anon_sym_else, + anon_sym_in, + [65475] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, + ACTIONS(3538), 1, anon_sym_DOT_DOT, - ACTIONS(4778), 2, + ACTIONS(4799), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2086), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 4, + ACTIONS(3534), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3526), 6, + ACTIONS(3540), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [64729] = 7, + [65507] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 2, - anon_sym_COLON, + ACTIONS(3505), 1, anon_sym_DOT_DOT, - STATE(2087), 2, + ACTIONS(4802), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3462), 3, + ACTIONS(3501), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4781), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3468), 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, - [64761] = 14, + [65539] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4784), 1, + ACTIONS(4805), 1, anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4807), 1, anon_sym_EQ, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2407), 1, + STATE(2409), 1, sym_parameters, - STATE(3075), 1, + STATE(3144), 1, sym_trait_bounds, - ACTIONS(3436), 2, + ACTIONS(3452), 2, anon_sym_PLUS, anon_sym_as, - ACTIONS(4788), 2, + ACTIONS(4809), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2088), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - [64807] = 7, + [65585] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_LPAREN, - ACTIONS(3504), 2, - anon_sym_COLON, + ACTIONS(3530), 1, anon_sym_DOT_DOT, - STATE(2089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3500), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3506), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64839] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4778), 1, + ACTIONS(4811), 2, anon_sym_LPAREN, - ACTIONS(3524), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2090), 2, + anon_sym_RBRACK, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 5, - anon_sym_RPAREN, + ACTIONS(3526), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3526), 5, + ACTIONS(3532), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [64871] = 7, + [65617] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4775), 1, - anon_sym_LPAREN, - ACTIONS(3496), 2, - anon_sym_COLON, + ACTIONS(3546), 1, anon_sym_DOT_DOT, - STATE(2091), 2, + ACTIONS(4814), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 5, - anon_sym_RPAREN, + ACTIONS(3542), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3498), 5, + ACTIONS(3548), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [64903] = 13, + [65649] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4793), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(4795), 1, + ACTIONS(4819), 1, anon_sym_LBRACE, - ACTIONS(4797), 1, + ACTIONS(4821), 1, anon_sym_BANG, - ACTIONS(4799), 1, + ACTIONS(4823), 1, anon_sym_AT, - ACTIONS(4801), 1, + ACTIONS(4825), 1, anon_sym_DOT_DOT, - ACTIONS(4805), 1, + ACTIONS(4829), 1, anon_sym_COLON_COLON, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - ACTIONS(4803), 2, + ACTIONS(4827), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2092), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 3, + ACTIONS(4654), 3, anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_if, - [64947] = 5, + anon_sym_if, + [65693] = 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(3448), 1, + anon_sym_SQUOTE, + ACTIONS(4831), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(409), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2110), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65733] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4799), 1, + anon_sym_LPAREN, + ACTIONS(3538), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2111), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3540), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [65765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4835), 1, anon_sym_DOT_DOT, - STATE(2093), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 12, + ACTIONS(4833), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170643,364 +172115,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64975] = 7, + [65793] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, - anon_sym_DOT_DOT, - ACTIONS(4790), 2, + ACTIONS(4811), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2094), 2, + ACTIONS(3530), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 4, - anon_sym_SEMI, + ACTIONS(3526), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3506), 6, + ACTIONS(3532), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65007] = 7, + [65825] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2095), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 3, + ACTIONS(3534), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4778), 3, + ACTIONS(4799), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3526), 5, + ACTIONS(3540), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65039] = 7, + [65857] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 2, + ACTIONS(3530), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2096), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 3, + ACTIONS(3526), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4790), 3, + ACTIONS(4811), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3506), 5, + ACTIONS(3532), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65071] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4630), 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, - [65101] = 7, + [65889] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 2, + ACTIONS(4814), 1, + anon_sym_LPAREN, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2098), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 3, + ACTIONS(3542), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4775), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3498), 5, + anon_sym_LT2, + ACTIONS(3548), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65133] = 7, + [65921] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, + ACTIONS(4802), 1, anon_sym_LPAREN, - ACTIONS(3466), 2, + ACTIONS(3505), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2099), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3462), 5, + ACTIONS(3501), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3468), 5, + ACTIONS(3507), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65165] = 7, + [65953] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 1, + ACTIONS(3505), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4781), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2100), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3462), 4, - anon_sym_SEMI, + ACTIONS(3501), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3468), 6, + ACTIONS(4802), 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, - [65197] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(4710), 1, - anon_sym_trait, - ACTIONS(4811), 1, - anon_sym_impl, - STATE(410), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(2101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65234] = 6, + [65985] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4815), 1, + ACTIONS(3546), 2, anon_sym_COLON, - ACTIONS(3808), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2102), 2, + anon_sym_DOT_DOT, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 9, - anon_sym_SEMI, + ACTIONS(3542), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4814), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65263] = 13, + ACTIONS(3548), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [66017] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4819), 1, + ACTIONS(4839), 1, anon_sym_GT, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4823), 1, + ACTIONS(4843), 1, sym_metavariable, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2143), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2103), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - STATE(3392), 3, + STATE(3273), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65306] = 13, + [66060] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4823), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4825), 1, + ACTIONS(4845), 1, anon_sym_GT, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2143), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2104), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - STATE(3392), 3, + STATE(3273), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65349] = 13, + [66103] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_trait, + ACTIONS(4847), 1, + anon_sym_impl, + STATE(416), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2122), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66140] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4823), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4827), 1, + ACTIONS(4849), 1, anon_sym_GT, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2143), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2105), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3392), 3, + STATE(3273), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65392] = 13, + [66183] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4823), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4829), 1, + ACTIONS(4851), 1, anon_sym_GT, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2143), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2106), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - STATE(3392), 3, + STATE(3273), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65435] = 6, + [66226] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4815), 1, + ACTIONS(4855), 1, anon_sym_COLON, - ACTIONS(3840), 2, + ACTIONS(4028), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2107), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 9, + ACTIONS(4853), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171010,144 +172460,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65464] = 13, + [66255] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4823), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4831), 1, + ACTIONS(4857), 1, anon_sym_GT, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2143), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2108), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - STATE(3392), 3, + STATE(3273), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65507] = 13, + [66298] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4823), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4833), 1, + ACTIONS(4859), 1, anon_sym_GT, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2143), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2109), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - STATE(3392), 3, + STATE(3273), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65550] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - ACTIONS(4837), 1, - sym_crate, - STATE(2306), 1, - sym_string_literal, - STATE(2110), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4835), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65580] = 4, + [66341] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(3984), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 11, + ACTIONS(4853), 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, - [65604] = 6, + [66370] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4841), 1, - anon_sym_COLON, - ACTIONS(4843), 1, - anon_sym_COLON_COLON, - STATE(2112), 2, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(4863), 1, + sym_crate, + STATE(2327), 1, + sym_string_literal, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 9, + ACTIONS(4861), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65632] = 6, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66400] = 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(2113), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 9, + ACTIONS(4865), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171157,41 +172588,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65660] = 6, + [66428] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4853), 1, + ACTIONS(3454), 1, anon_sym_COLON, - ACTIONS(4855), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2114), 2, + STATE(2030), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3452), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65688] = 6, + anon_sym_as, + [66466] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, + ACTIONS(4775), 1, anon_sym_COLON_COLON, - ACTIONS(4853), 1, + ACTIONS(4873), 1, anon_sym_COLON, - STATE(2115), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 9, + ACTIONS(4871), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171201,166 +172637,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65716] = 11, + [66494] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4857), 1, + ACTIONS(4875), 1, anon_sym_for, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2077), 1, + STATE(2098), 1, sym_parameters, - STATE(2116), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65754] = 6, + [66532] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4843), 1, - anon_sym_COLON_COLON, - ACTIONS(4853), 1, - anon_sym_COLON, - STATE(2117), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 9, + 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, - [65782] = 4, + [66556] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2118), 2, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + ACTIONS(3534), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2135), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3540), 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, + [66584] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4775), 1, + anon_sym_COLON_COLON, + ACTIONS(4867), 1, + anon_sym_COLON, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 11, + ACTIONS(4865), 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, - [65806] = 7, + [66612] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - ACTIONS(4859), 1, - sym_crate, - STATE(2306), 1, - sym_string_literal, - STATE(2119), 2, + ACTIONS(3530), 1, + anon_sym_DOT_DOT, + ACTIONS(3526), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65836] = 11, + ACTIONS(3532), 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, + [66640] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(3505), 1, + anon_sym_DOT_DOT, + ACTIONS(3501), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2138), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4648), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66668] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3546), 1, + anon_sym_DOT_DOT, + ACTIONS(3542), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4650), 1, + STATE(2139), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3548), 8, anon_sym_LPAREN, - ACTIONS(4652), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4861), 1, - anon_sym_for, - STATE(2012), 1, + anon_sym_if, + [66696] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4744), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, sym_type_arguments, - STATE(2077), 1, - sym_parameters, - STATE(2120), 2, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65874] = 12, + ACTIONS(4708), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [66734] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4863), 1, + ACTIONS(4877), 1, sym_metavariable, - STATE(1120), 1, - sym_attribute_item, - STATE(2132), 1, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(2492), 1, + STATE(1254), 1, + sym_attribute_item, + STATE(2725), 1, sym_lifetime, - STATE(2121), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - STATE(3009), 3, + STATE(3299), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65914] = 6, + [66774] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4881), 1, anon_sym_COLON, - STATE(2122), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(4865), 9, + ACTIONS(4879), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171370,91 +172871,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65942] = 12, + [66802] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4885), 1, sym_identifier, - ACTIONS(4821), 1, - anon_sym_const, - ACTIONS(4863), 1, - sym_metavariable, - STATE(1120), 1, - sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, - sym_lifetime, - STATE(2123), 2, + STATE(411), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2143), 2, sym_line_comment, sym_block_comment, - STATE(3009), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65982] = 6, + ACTIONS(4887), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66836] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4855), 1, - anon_sym_COLON_COLON, - ACTIONS(4871), 1, - anon_sym_COLON, - STATE(2124), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 9, + 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, anon_sym_else, anon_sym_in, - [66010] = 6, + [66860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_COLON_COLON, - ACTIONS(4871), 1, - anon_sym_COLON, - STATE(2125), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 9, + ACTIONS(1449), 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, - [66038] = 6, + [66884] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(4889), 1, + sym_crate, + STATE(2327), 1, + sym_string_literal, + STATE(2146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4861), 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, + [66914] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4843), 1, + sym_metavariable, + STATE(1254), 1, + sym_attribute_item, + STATE(2141), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2725), 1, + sym_lifetime, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + STATE(3273), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66954] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4843), 1, + ACTIONS(4869), 1, anon_sym_COLON_COLON, - ACTIONS(4871), 1, + ACTIONS(4873), 1, anon_sym_COLON, - STATE(2126), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 9, + ACTIONS(4871), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171464,40 +173009,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66066] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [66982] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(4873), 1, - anon_sym_move, - STATE(420), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(2127), 2, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(4891), 1, + sym_crate, + STATE(2327), 1, + sym_string_literal, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, + ACTIONS(4861), 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, - [66100] = 4, + [67012] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2128), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 11, + ACTIONS(1433), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171509,604 +173052,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66124] = 12, + [67036] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(3054), 1, - anon_sym_SQUOTE, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4821), 1, - anon_sym_const, - ACTIONS(4875), 1, - sym_metavariable, - STATE(1120), 1, - sym_attribute_item, - STATE(2130), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, - sym_lifetime, - STATE(2129), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4893), 1, + anon_sym_for, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2151), 2, sym_line_comment, sym_block_comment, - STATE(2958), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66164] = 12, + ACTIONS(3452), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67074] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(3054), 1, - anon_sym_SQUOTE, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4821), 1, - anon_sym_const, - ACTIONS(4877), 1, - sym_metavariable, - STATE(1077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, - sym_attribute_item, - STATE(2637), 1, - sym_lifetime, - STATE(2130), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4897), 1, + anon_sym_COLON, + STATE(2152), 2, sym_line_comment, sym_block_comment, - STATE(2873), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66204] = 12, + ACTIONS(4895), 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, + [67102] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4823), 1, + ACTIONS(4899), 1, sym_metavariable, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2143), 1, + STATE(2154), 1, aux_sym_enum_variant_list_repeat1, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2131), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - STATE(3392), 3, + STATE(3161), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66244] = 12, + [67142] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_SQUOTE, - ACTIONS(4817), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4821), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4879), 1, + ACTIONS(4901), 1, sym_metavariable, - STATE(1077), 1, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2637), 1, + STATE(2725), 1, sym_lifetime, - STATE(2132), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - STATE(3097), 3, + STATE(2894), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66284] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - ACTIONS(4881), 1, - anon_sym_for, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - STATE(2133), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66322] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(4883), 1, - sym_identifier, - STATE(406), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(2134), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4885), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66356] = 11, + [67182] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(3460), 1, anon_sym_COLON, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2407), 1, + STATE(2409), 1, sym_parameters, - STATE(2135), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3458), 4, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [66394] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3466), 1, - anon_sym_DOT_DOT, - ACTIONS(3462), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2136), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3468), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66422] = 11, + [67220] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4660), 1, - anon_sym_COLON, ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4696), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4658), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66460] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3504), 1, - anon_sym_DOT_DOT, - ACTIONS(3500), 2, - anon_sym_LBRACE, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(2138), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3506), 8, + ACTIONS(4674), 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(4676), 1, anon_sym_COLON_COLON, - anon_sym_if, - [66488] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_DOT_DOT, - ACTIONS(3492), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2139), 2, + ACTIONS(4903), 1, + anon_sym_for, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66516] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_DOT_DOT, - ACTIONS(3520), 2, + ACTIONS(3452), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2140), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3526), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66544] = 11, + anon_sym_PLUS, + anon_sym_where, + [67258] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4887), 1, + ACTIONS(4905), 1, anon_sym_for, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2077), 1, + STATE(2098), 1, sym_parameters, - STATE(2141), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66582] = 12, + [67296] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4889), 1, + ACTIONS(4907), 1, sym_identifier, - ACTIONS(4891), 1, + ACTIONS(4909), 1, anon_sym_RBRACE, - ACTIONS(4893), 1, + ACTIONS(4911), 1, anon_sym_DOT_DOT, - ACTIONS(4895), 1, + ACTIONS(4913), 1, anon_sym_COMMA, - ACTIONS(4897), 1, + ACTIONS(4915), 1, sym_integer_literal, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2520), 1, + STATE(2552), 1, aux_sym_enum_variant_list_repeat1, - STATE(2142), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - STATE(2970), 3, + STATE(3080), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66622] = 12, + [67336] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(3054), 1, - anon_sym_SQUOTE, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4821), 1, - anon_sym_const, - ACTIONS(4899), 1, - sym_metavariable, - STATE(1077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, - sym_attribute_item, - STATE(2637), 1, - sym_lifetime, - STATE(2143), 2, + ACTIONS(3432), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(2159), 2, sym_line_comment, sym_block_comment, - STATE(3333), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66662] = 6, + ACTIONS(3428), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67374] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4903), 1, - anon_sym_COLON, - STATE(2144), 2, + ACTIONS(4917), 1, + anon_sym_for, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 9, + ACTIONS(3452), 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, - [66690] = 7, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67412] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - ACTIONS(4905), 1, - sym_crate, - STATE(2306), 1, - sym_string_literal, - STATE(2145), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4919), 1, + anon_sym_for, + STATE(2030), 1, + sym_type_arguments, + STATE(2098), 1, + sym_parameters, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 8, + ACTIONS(3452), 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, - [66720] = 4, + anon_sym_PLUS, + anon_sym_where, + [67450] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2146), 2, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + ACTIONS(4923), 1, + anon_sym_COLON, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 11, + ACTIONS(4921), 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, - [66744] = 11, + [67478] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4907), 1, + ACTIONS(4925), 1, anon_sym_for, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2077), 1, + STATE(2098), 1, sym_parameters, - STATE(2147), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3452), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66782] = 7, + [67516] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - ACTIONS(4909), 1, - sym_crate, - STATE(2306), 1, - sym_string_literal, - STATE(2148), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4927), 1, + sym_metavariable, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(2725), 1, + sym_lifetime, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66812] = 11, + STATE(3157), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67556] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_COLON, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4883), 1, anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2407), 1, - sym_parameters, - STATE(2149), 2, + ACTIONS(4931), 1, + anon_sym_COLON, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4929), 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, - [66850] = 11, + anon_sym_else, + anon_sym_in, + [67584] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4907), 1, + sym_identifier, ACTIONS(4911), 1, - anon_sym_for, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - STATE(2150), 2, + anon_sym_DOT_DOT, + ACTIONS(4915), 1, + sym_integer_literal, + ACTIONS(4933), 1, + anon_sym_RBRACE, + ACTIONS(4935), 1, + anon_sym_COMMA, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66888] = 11, + STATE(3169), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67624] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4775), 1, anon_sym_COLON_COLON, - ACTIONS(4913), 1, - anon_sym_for, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - STATE(2151), 2, + ACTIONS(4923), 1, + anon_sym_COLON, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(4921), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66926] = 6, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67652] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4841), 1, + ACTIONS(4923), 1, anon_sym_COLON, - ACTIONS(4855), 1, + ACTIONS(4937), 1, anon_sym_COLON_COLON, - STATE(2152), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 9, + ACTIONS(4921), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172116,167 +173518,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66954] = 11, + [67680] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4873), 1, + anon_sym_COLON, + ACTIONS(4937), 1, anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_for, - STATE(2012), 1, - sym_type_arguments, - STATE(2077), 1, - sym_parameters, - STATE(2153), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(4871), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66992] = 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, + [67708] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4889), 1, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4893), 1, - anon_sym_DOT_DOT, - ACTIONS(4897), 1, - sym_integer_literal, - ACTIONS(4917), 1, - anon_sym_RBRACE, - ACTIONS(4919), 1, - anon_sym_COMMA, - STATE(1120), 1, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4939), 1, + sym_metavariable, + STATE(1254), 1, sym_attribute_item, - STATE(2520), 1, + STATE(2164), 1, aux_sym_enum_variant_list_repeat1, - STATE(2154), 2, + STATE(2579), 1, + sym_lifetime, + STATE(2170), 2, sym_line_comment, sym_block_comment, - STATE(3011), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67032] = 4, + STATE(2971), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67748] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2155), 2, + ACTIONS(4867), 1, + anon_sym_COLON, + ACTIONS(4937), 1, + anon_sym_COLON_COLON, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 11, + ACTIONS(4865), 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, - [67056] = 6, + [67776] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_COLON_COLON, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(3070), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, ACTIONS(4841), 1, - anon_sym_COLON, - STATE(2156), 2, + anon_sym_const, + ACTIONS(4939), 1, + sym_metavariable, + STATE(1254), 1, + sym_attribute_item, + STATE(2164), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2725), 1, + sym_lifetime, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 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, - [67084] = 11, + STATE(2971), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67816] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_COLON, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2012), 1, + ACTIONS(4941), 1, + anon_sym_for, + STATE(2030), 1, sym_type_arguments, - STATE(2407), 1, + STATE(2098), 1, sym_parameters, - STATE(2157), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 4, + ACTIONS(3452), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67122] = 12, + anon_sym_where, + [67854] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(3454), 1, anon_sym_COLON, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - ACTIONS(4921), 1, + ACTIONS(4943), 1, anon_sym_EQ, - STATE(2387), 1, - sym_type_arguments, - STATE(2407), 1, + STATE(2409), 1, sym_parameters, - STATE(2158), 2, + STATE(2435), 1, + sym_type_arguments, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, + ACTIONS(3452), 3, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - [67162] = 4, + [67894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2159), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 10, + ACTIONS(1441), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172284,37 +173689,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67185] = 4, + [67918] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2160), 2, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + ACTIONS(4945), 1, + sym_crate, + STATE(2327), 1, + sym_string_literal, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 10, + ACTIONS(4861), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67948] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4951), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67208] = 4, + ACTIONS(4953), 1, + sym_crate, + STATE(1254), 1, + sym_attribute_item, + STATE(2300), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3044), 1, + sym_field_declaration, + STATE(3506), 1, + sym_visibility_modifier, + STATE(2177), 2, + sym_line_comment, + sym_block_comment, + [67989] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2161), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 10, + ACTIONS(4955), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172325,15 +173763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67231] = 4, + [68012] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2162), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 10, + ACTIONS(4871), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172344,15 +173782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67254] = 4, + [68035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2163), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 10, + ACTIONS(4957), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172363,15 +173801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67277] = 4, + [68058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2164), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4933), 10, + ACTIONS(4959), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172382,15 +173820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67300] = 4, + [68081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2165), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 10, + ACTIONS(4961), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172401,15 +173839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67323] = 4, + [68104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2166), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 10, + ACTIONS(4963), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172420,15 +173858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67346] = 4, + [68127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2167), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4939), 10, + ACTIONS(4965), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172439,15 +173877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67369] = 4, + [68150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2168), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(4941), 10, + ACTIONS(4967), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172458,34 +173896,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67392] = 4, + [68173] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2169), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4969), 1, + anon_sym_LBRACE, + STATE(2031), 1, + sym_type_arguments, + STATE(2099), 1, + sym_parameters, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 10, + ACTIONS(3475), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67415] = 4, + [68206] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 10, + ACTIONS(4971), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172496,15 +173939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67438] = 4, + [68229] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2171), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 10, + ACTIONS(4973), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172515,40 +173958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67461] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4949), 1, - anon_sym_BANG, - ACTIONS(4951), 1, - anon_sym_DOT_DOT, - ACTIONS(4955), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4953), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2172), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4658), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [67496] = 4, + [68252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2173), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 10, + ACTIONS(4975), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172559,41 +173977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67519] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4889), 1, - sym_identifier, - ACTIONS(4893), 1, - anon_sym_DOT_DOT, - ACTIONS(4897), 1, - sym_integer_literal, - ACTIONS(4959), 1, - anon_sym_RBRACE, - STATE(1120), 1, - sym_attribute_item, - STATE(2520), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2174), 2, - sym_line_comment, - sym_block_comment, - STATE(3457), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67556] = 4, + [68275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2175), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 10, + ACTIONS(4977), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172604,40 +173996,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67579] = 10, + [68298] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_COLON, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4656), 1, - anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2407), 1, - sym_parameters, - STATE(2176), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(3446), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4979), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_as, - [67614] = 4, + anon_sym_else, + anon_sym_in, + [68321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 10, + ACTIONS(4981), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172648,15 +174034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67637] = 4, + [68344] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 10, + ACTIONS(4983), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172667,15 +174053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67660] = 4, + [68367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 10, + ACTIONS(4985), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172686,15 +174072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67683] = 4, + [68390] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 10, + ACTIONS(4987), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172705,66 +174091,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67706] = 8, + [68413] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(4320), 1, + ACTIONS(3674), 1, anon_sym_COLON_COLON, - ACTIONS(4971), 1, + ACTIONS(4989), 1, anon_sym_BANG, - STATE(1666), 1, + STATE(1284), 1, sym_type_arguments, - STATE(2181), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67737] = 13, + [68444] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3471), 1, + anon_sym_COLON, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4680), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_type_arguments, + STATE(2409), 1, + sym_parameters, + STATE(2197), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3469), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68479] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4991), 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, + [68502] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4993), 1, + anon_sym_BANG, + ACTIONS(4995), 1, + anon_sym_DOT_DOT, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4997), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4708), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [68537] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, sym_identifier, - ACTIONS(4975), 1, + ACTIONS(5003), 1, anon_sym_RBRACE, - ACTIONS(4977), 1, + ACTIONS(5005), 1, anon_sym_COMMA, - ACTIONS(4979), 1, - sym_crate, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2279), 1, + STATE(2321), 1, aux_sym_enum_variant_list_repeat1, - STATE(3148), 1, + STATE(2890), 1, sym_enum_variant, - STATE(3688), 1, + STATE(3794), 1, sym_visibility_modifier, - STATE(2182), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, - [67778] = 4, + [68578] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 10, + ACTIONS(5007), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172775,38 +174230,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67801] = 8, + [68601] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_LT2, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - STATE(1666), 1, - sym_type_arguments, - STATE(2184), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4907), 1, + sym_identifier, + ACTIONS(4911), 1, + anon_sym_DOT_DOT, + ACTIONS(4915), 1, + sym_integer_literal, + ACTIONS(5009), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67832] = 4, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68638] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4907), 1, + sym_identifier, + ACTIONS(4911), 1, + anon_sym_DOT_DOT, + ACTIONS(4915), 1, + sym_integer_literal, + ACTIONS(5011), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 10, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68675] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2204), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4921), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172817,15 +174301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67855] = 4, + [68698] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2186), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 10, + ACTIONS(5013), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172836,40 +174320,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67878] = 10, + [68721] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4636), 1, - anon_sym_COLON, - ACTIONS(4638), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4712), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(4983), 1, + ACTIONS(4757), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2187), 2, + STATE(2024), 1, + sym_type_arguments, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [67913] = 4, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68752] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 10, + ACTIONS(1501), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172880,39 +174362,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67936] = 9, + [68775] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4184), 1, anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LBRACE, - STATE(2008), 1, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + ACTIONS(5015), 1, + anon_sym_BANG, + STATE(1659), 1, sym_type_arguments, - STATE(2078), 1, - sym_parameters, - STATE(2189), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68806] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5017), 1, + anon_sym_RBRACE, + ACTIONS(5019), 1, anon_sym_COMMA, - [67969] = 4, + STATE(1254), 1, + sym_attribute_item, + STATE(2313), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3003), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2209), 2, + sym_line_comment, + sym_block_comment, + [68847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 10, + ACTIONS(5021), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172923,15 +174432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67992] = 4, + [68870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 10, + ACTIONS(5023), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172942,15 +174451,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68015] = 4, + [68893] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2192), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4907), 1, + sym_identifier, + ACTIONS(4911), 1, + anon_sym_DOT_DOT, + ACTIONS(4915), 1, + sym_integer_literal, + ACTIONS(5025), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2552), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(4991), 10, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68930] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5027), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172961,108 +174496,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68038] = 10, + [68953] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2193), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 3, + ACTIONS(5029), 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, - [68073] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4734), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2194), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68104] = 11, + anon_sym_else, + anon_sym_in, + [68976] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4889), 1, + ACTIONS(4907), 1, sym_identifier, - ACTIONS(4893), 1, + ACTIONS(4911), 1, anon_sym_DOT_DOT, - ACTIONS(4897), 1, + ACTIONS(4915), 1, sym_integer_literal, - ACTIONS(4993), 1, + ACTIONS(5031), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2520), 1, + STATE(2552), 1, aux_sym_enum_variant_list_repeat1, - STATE(2195), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - STATE(3457), 3, + STATE(3408), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68141] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2196), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4995), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68164] = 4, + [69013] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2197), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(4997), 10, + ACTIONS(4865), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173073,15 +174560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68187] = 4, + [69036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2198), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 10, + ACTIONS(5033), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173092,38 +174579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68210] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_LT2, - ACTIONS(3584), 1, - anon_sym_COLON_COLON, - ACTIONS(5001), 1, - anon_sym_BANG, - STATE(1203), 1, - sym_type_arguments, - STATE(2199), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68241] = 4, + [69059] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2200), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(5003), 10, + ACTIONS(5035), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173134,43 +174598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68264] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4973), 1, - sym_identifier, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(5007), 1, - anon_sym_COMMA, - STATE(1120), 1, - sym_attribute_item, - STATE(2315), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3153), 1, - sym_enum_variant, - STATE(3688), 1, - sym_visibility_modifier, - STATE(2201), 2, - sym_line_comment, - sym_block_comment, - [68305] = 4, + [69082] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2202), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(5009), 10, + ACTIONS(5037), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173181,15 +174617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68328] = 4, + [69105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2203), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(5011), 10, + ACTIONS(5039), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173200,15 +174636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68351] = 4, + [69128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 10, + ACTIONS(4654), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173219,92 +174655,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68374] = 11, + [69151] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4889), 1, - sym_identifier, - ACTIONS(4893), 1, - anon_sym_DOT_DOT, - ACTIONS(4897), 1, - sym_integer_literal, - ACTIONS(5013), 1, - anon_sym_RBRACE, - STATE(1120), 1, - sym_attribute_item, - STATE(2520), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2205), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + STATE(1284), 1, + sym_type_arguments, + STATE(2222), 2, sym_line_comment, sym_block_comment, - STATE(3457), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68411] = 8, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69182] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(2191), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2206), 2, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + STATE(1659), 1, + sym_type_arguments, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68442] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [69213] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_RBRACE, - ACTIONS(5019), 1, - anon_sym_COMMA, - STATE(1120), 1, - sym_attribute_item, - STATE(2281), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3001), 1, - sym_field_declaration, - STATE(3683), 1, - sym_visibility_modifier, - STATE(2207), 2, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2224), 2, sym_line_comment, sym_block_comment, - [68483] = 4, + ACTIONS(4654), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [69248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2208), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 10, + ACTIONS(5043), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173315,15 +174745,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68506] = 4, + [69271] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2209), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 10, + ACTIONS(4708), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [69306] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5045), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173334,15 +174789,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68529] = 4, + [69329] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2210), 2, + ACTIONS(1617), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(2207), 1, + sym_block, + STATE(3770), 1, + sym_label, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 10, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69360] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5047), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173353,751 +174831,796 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68552] = 11, + [69383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4889), 1, - sym_identifier, - ACTIONS(4893), 1, - anon_sym_DOT_DOT, - ACTIONS(4897), 1, - sym_integer_literal, - ACTIONS(5025), 1, - anon_sym_RBRACE, - STATE(1120), 1, - sym_attribute_item, - STATE(2520), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2211), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - STATE(3457), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68589] = 13, + ACTIONS(5049), 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, + [69406] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(5027), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5051), 1, anon_sym_RBRACE, - ACTIONS(5029), 1, + ACTIONS(5053), 1, anon_sym_COMMA, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2303), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3002), 1, + STATE(2898), 1, sym_field_declaration, - STATE(3683), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2212), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - [68630] = 8, + [69447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_LT2, - ACTIONS(3584), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - STATE(1203), 1, - sym_type_arguments, - STATE(2213), 2, + ACTIONS(3505), 1, + anon_sym_DOT_DOT, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68661] = 10, + 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, + [69471] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4889), 1, - sym_identifier, - ACTIONS(4893), 1, - anon_sym_DOT_DOT, - ACTIONS(4897), 1, - sym_integer_literal, - STATE(1120), 1, - sym_attribute_item, - STATE(2520), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2214), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5055), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(2099), 1, + sym_parameters, + STATE(2233), 2, sym_line_comment, sym_block_comment, - STATE(3457), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68695] = 8, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69503] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2416), 1, + STATE(2405), 1, sym_parameters, - STATE(2215), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 5, + ACTIONS(3513), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [68725] = 5, + [69533] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 1, - anon_sym_DOT_DOT, - STATE(2216), 2, + ACTIONS(5057), 1, + anon_sym_SEMI, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_declaration_list, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(3468), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68749] = 9, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69561] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(5031), 1, - anon_sym_for, - STATE(2008), 1, + ACTIONS(5061), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, sym_type_arguments, - STATE(2078), 1, - sym_parameters, - STATE(2217), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68781] = 12, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69589] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5033), 1, - anon_sym_SEMI, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1412), 1, - sym_field_declaration_list, - STATE(2374), 1, - sym_type_parameters, - STATE(2929), 1, - sym_ordered_field_declaration_list, - STATE(3272), 1, - sym_where_clause, - STATE(2218), 2, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + STATE(2237), 2, sym_line_comment, sym_block_comment, - [68819] = 12, + ACTIONS(3540), 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, + [69613] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5063), 1, + anon_sym_SEMI, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5043), 1, - anon_sym_SEMI, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(644), 1, + STATE(1314), 1, sym_field_declaration_list, - STATE(2357), 1, + STATE(2366), 1, sym_type_parameters, - STATE(2870), 1, + STATE(3164), 1, sym_ordered_field_declaration_list, - STATE(3283), 1, + STATE(3445), 1, sym_where_clause, - STATE(2219), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - [68857] = 8, + [69651] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2416), 1, + STATE(2405), 1, sym_parameters, - STATE(2220), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 5, + ACTIONS(3517), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [68887] = 6, + [69681] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_PLUS, - STATE(2233), 1, - aux_sym_trait_bounds_repeat1, - STATE(2221), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_SEMI, + STATE(1321), 1, + sym_declaration_list, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68913] = 6, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69709] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5051), 1, - anon_sym_PLUS, - STATE(2233), 1, - aux_sym_trait_bounds_repeat1, - STATE(2222), 2, + ACTIONS(4817), 1, + anon_sym_LPAREN, + ACTIONS(4821), 1, + anon_sym_BANG, + ACTIONS(4825), 1, + anon_sym_DOT_DOT, + ACTIONS(5075), 1, + anon_sym_COLON_COLON, + ACTIONS(4827), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 7, - anon_sym_SEMI, + ACTIONS(4654), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69741] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(1284), 1, + sym_type_arguments, + STATE(2242), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69769] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5079), 1, + anon_sym_move, + STATE(233), 1, + sym_closure_parameters, + STATE(2243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69797] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5081), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2292), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2244), 2, + sym_line_comment, + sym_block_comment, + [69835] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5067), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_where, - [68939] = 12, + ACTIONS(5083), 1, + anon_sym_SEMI, + STATE(1423), 1, + sym_field_declaration_list, + STATE(2363), 1, + sym_type_parameters, + STATE(2905), 1, + sym_ordered_field_declaration_list, + STATE(3257), 1, + sym_where_clause, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + [69873] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5053), 1, + ACTIONS(5085), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2309), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3303), 1, - sym_enum_variant, - STATE(3688), 1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2223), 2, + STATE(2246), 2, + sym_line_comment, + sym_block_comment, + [69911] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5089), 1, + anon_sym_PLUS, + STATE(2262), 1, + aux_sym_trait_bounds_repeat1, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5087), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69937] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5091), 1, + anon_sym_SEMI, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(551), 1, + sym_declaration_list, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [68977] = 12, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69965] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5015), 1, + ACTIONS(5001), 1, sym_identifier, - ACTIONS(5055), 1, + ACTIONS(5095), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2283), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3381), 1, - sym_field_declaration, - STATE(3683), 1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, sym_visibility_modifier, - STATE(2224), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [69015] = 12, + [70003] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5057), 1, + ACTIONS(5097), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2309), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3303), 1, - sym_enum_variant, - STATE(3688), 1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2225), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [69053] = 7, + [70041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5059), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2226), 2, + ACTIONS(3530), 1, + anon_sym_DOT_DOT, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69081] = 9, + ACTIONS(3532), 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, + [70065] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5061), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, - anon_sym_LBRACK, - ACTIONS(5069), 1, - anon_sym_LBRACE, - STATE(3640), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - ACTIONS(5064), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2227), 3, + ACTIONS(5099), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(2099), 1, + sym_parameters, + STATE(2252), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [69113] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(3475), 4, anon_sym_SEMI, - ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, - STATE(2228), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69141] = 12, + anon_sym_PLUS, + anon_sym_where, + [70097] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5015), 1, + ACTIONS(5001), 1, sym_identifier, - ACTIONS(5076), 1, + ACTIONS(5101), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2283), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3381), 1, - sym_field_declaration, - STATE(3683), 1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, sym_visibility_modifier, - STATE(2229), 2, - sym_line_comment, - sym_block_comment, - [69179] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - ACTIONS(5078), 1, - anon_sym_RBRACK, - ACTIONS(3532), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4658), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2230), 2, + STATE(2253), 2, sym_line_comment, sym_block_comment, - [69211] = 12, + [70135] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5081), 1, + ACTIONS(5103), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2309), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3303), 1, - sym_enum_variant, - STATE(3688), 1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2231), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [69249] = 9, + [70173] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5083), 1, - anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2405), 1, sym_parameters, - STATE(2232), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69281] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5049), 1, + ACTIONS(3475), 5, + anon_sym_COLON, anon_sym_PLUS, - STATE(2242), 1, - aux_sym_trait_bounds_repeat1, - STATE(2233), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5085), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69307] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4749), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2234), 2, - sym_line_comment, - sym_block_comment, - [69343] = 12, + anon_sym_as, + [70203] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, - sym_identifier, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5087), 1, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5105), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2309), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3303), 1, + STATE(3425), 1, sym_enum_variant, - STATE(3688), 1, + STATE(3794), 1, sym_visibility_modifier, - STATE(2235), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - [69381] = 12, + [70241] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(5089), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5107), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2283), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3381), 1, + STATE(3225), 1, sym_field_declaration, - STATE(3683), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2236), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - [69419] = 8, + [70279] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2416), 1, + STATE(2405), 1, sym_parameters, - STATE(2237), 2, + STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 5, + ACTIONS(3509), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [69449] = 9, + [70309] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4801), 1, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(4708), 1, + anon_sym_PIPE, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - ACTIONS(5091), 1, + ACTIONS(4744), 1, anon_sym_COLON_COLON, - ACTIONS(4803), 2, + ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2238), 2, + ACTIONS(5109), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [69481] = 12, + [70343] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(5112), 1, + anon_sym_COLON_COLON, + STATE(1659), 1, + sym_type_arguments, + STATE(2260), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70371] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5093), 1, + ACTIONS(5114), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2309), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3303), 1, - sym_enum_variant, - STATE(3688), 1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2239), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, - [69519] = 5, + [70409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, - anon_sym_DOT_DOT, - STATE(2240), 2, + ACTIONS(5118), 1, + anon_sym_PLUS, + STATE(2262), 3, sym_line_comment, sym_block_comment, - ACTIONS(3506), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [69543] = 12, - ACTIONS(69), 1, - anon_sym_pub, + aux_sym_trait_bounds_repeat1, + ACTIONS(5116), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70433] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, - sym_identifier, - ACTIONS(5095), 1, - anon_sym_RBRACE, - STATE(1120), 1, - sym_attribute_item, - STATE(2283), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3381), 1, - sym_field_declaration, - STATE(3683), 1, - sym_visibility_modifier, - STATE(2241), 2, + ACTIONS(5089), 1, + anon_sym_PLUS, + STATE(2247), 1, + aux_sym_trait_bounds_repeat1, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [69581] = 5, + ACTIONS(5121), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70459] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5099), 1, + ACTIONS(5123), 1, anon_sym_PLUS, - STATE(2242), 3, + STATE(2247), 1, + aux_sym_trait_bounds_repeat1, + STATE(2264), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5097), 7, + ACTIONS(5121), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -174105,992 +175628,878 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69605] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70485] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, + ACTIONS(4907), 1, sym_identifier, - ACTIONS(5102), 1, - anon_sym_RBRACE, - STATE(1120), 1, + ACTIONS(4911), 1, + anon_sym_DOT_DOT, + ACTIONS(4915), 1, + sym_integer_literal, + STATE(1254), 1, sym_attribute_item, - STATE(2283), 1, + STATE(2552), 1, aux_sym_enum_variant_list_repeat1, - STATE(3381), 1, - sym_field_declaration, - STATE(3683), 1, - sym_visibility_modifier, - STATE(2243), 2, - sym_line_comment, - sym_block_comment, - [69643] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3532), 1, - anon_sym_PLUS, - ACTIONS(4658), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4696), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5078), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2244), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [69677] = 12, + STATE(3408), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70519] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5125), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2283), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3381), 1, + STATE(3225), 1, sym_field_declaration, - STATE(3683), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2245), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [69715] = 12, + [70557] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5045), 1, - anon_sym_LBRACE, - ACTIONS(5106), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_field_declaration_list, - STATE(2355), 1, - sym_type_parameters, - STATE(3136), 1, - sym_ordered_field_declaration_list, - STATE(3180), 1, - sym_where_clause, - STATE(2246), 2, + ACTIONS(5127), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(2099), 1, + sym_parameters, + STATE(2267), 2, sym_line_comment, sym_block_comment, - [69753] = 7, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70589] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5108), 1, + ACTIONS(4708), 1, + anon_sym_PIPE, + ACTIONS(4710), 1, + anon_sym_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4773), 1, anon_sym_COLON_COLON, - STATE(1203), 1, + STATE(2024), 1, sym_type_arguments, - STATE(2247), 2, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69781] = 9, + [70625] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5110), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2248), 2, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5129), 1, + anon_sym_SEMI, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(536), 1, + sym_field_declaration_list, + STATE(2370), 1, + sym_type_parameters, + STATE(3170), 1, + sym_ordered_field_declaration_list, + STATE(3463), 1, + sym_where_clause, + STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [69813] = 7, + [70663] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(5112), 1, - anon_sym_SEMI, - STATE(752), 1, - sym_declaration_list, - STATE(2249), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5133), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(2099), 1, + sym_parameters, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69841] = 7, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70695] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5109), 1, + anon_sym_RBRACK, + ACTIONS(3475), 2, anon_sym_SEMI, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1156), 1, - sym_declaration_list, - STATE(2250), 2, + anon_sym_PLUS, + ACTIONS(4708), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4716), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69869] = 12, + [70727] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, - sym_identifier, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5118), 1, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5135), 1, anon_sym_RBRACE, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2309), 1, + STATE(2292), 1, aux_sym_enum_variant_list_repeat1, - STATE(3303), 1, + STATE(3425), 1, sym_enum_variant, - STATE(3688), 1, + STATE(3794), 1, sym_visibility_modifier, - STATE(2251), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - [69907] = 9, + [70765] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(5120), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2078), 1, - sym_parameters, - STATE(2252), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + ACTIONS(5137), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_attribute_item, + STATE(2292), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69939] = 8, + [70803] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2416), 1, - sym_parameters, - STATE(2253), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3528), 5, + ACTIONS(4708), 1, + anon_sym_PIPE, + ACTIONS(4710), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69969] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(4714), 1, anon_sym_DOT_DOT, - STATE(2254), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3498), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(4773), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [69993] = 5, + STATE(2274), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70835] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_DOT_DOT, - STATE(2255), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3526), 8, + ACTIONS(4656), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4662), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [70017] = 9, + STATE(2275), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4654), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [70867] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2078), 1, - sym_parameters, - STATE(2256), 2, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + ACTIONS(5141), 1, + anon_sym_SEMI, + STATE(525), 1, + sym_field_declaration_list, + STATE(2361), 1, + sym_type_parameters, + STATE(3152), 1, + sym_ordered_field_declaration_list, + STATE(3421), 1, + sym_where_clause, + STATE(2276), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70049] = 9, + [70905] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5124), 1, + ACTIONS(5143), 1, anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2099), 1, sym_parameters, - STATE(2257), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70081] = 9, + [70937] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5126), 1, + ACTIONS(5145), 1, anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2099), 1, sym_parameters, - STATE(2258), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70113] = 12, + [70969] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5147), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5152), 1, + anon_sym_LBRACK, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_SEMI, - STATE(1260), 1, - sym_field_declaration_list, - STATE(2370), 1, - sym_type_parameters, - STATE(2980), 1, - sym_ordered_field_declaration_list, - STATE(3181), 1, - sym_where_clause, - STATE(2259), 2, - sym_line_comment, - sym_block_comment, - [70151] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4658), 1, - anon_sym_PIPE, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4749), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2260), 2, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(3785), 1, + sym_macro_rule, + ACTIONS(5150), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2279), 3, sym_line_comment, sym_block_comment, - ACTIONS(3532), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [70183] = 9, + aux_sym_macro_definition_repeat1, + [71001] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2099), 1, sym_parameters, - STATE(2261), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70215] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_COLON_COLON, - STATE(1666), 1, - sym_type_arguments, - STATE(2262), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70243] = 7, + [71033] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, anon_sym_SEMI, - STATE(1286), 1, + STATE(548), 1, sym_declaration_list, - STATE(2263), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70271] = 9, + [71061] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5136), 1, + ACTIONS(5162), 1, anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2078), 1, + STATE(2099), 1, sym_parameters, - STATE(2264), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70303] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5138), 1, - anon_sym_SEMI, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_DASH_GT, - STATE(495), 1, - sym_block, - STATE(2523), 1, - sym_where_clause, - STATE(3740), 1, - sym_label, - STATE(2265), 2, - sym_line_comment, - sym_block_comment, - [70338] = 11, + [71093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, - STATE(539), 1, - sym_block, - STATE(2568), 1, - sym_where_clause, - STATE(3740), 1, - sym_label, - STATE(2266), 2, + ACTIONS(3546), 1, + anon_sym_DOT_DOT, + STATE(2283), 2, sym_line_comment, sym_block_comment, - [70373] = 6, + ACTIONS(3548), 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, + [71117] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4684), 1, - anon_sym_trait, - ACTIONS(5146), 1, - anon_sym_impl, - STATE(2267), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4993), 1, + anon_sym_BANG, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70398] = 11, + [71142] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5150), 1, + ACTIONS(5166), 1, anon_sym_LT, - STATE(1215), 1, + STATE(510), 1, sym_declaration_list, - STATE(2414), 1, + STATE(2410), 1, sym_type_parameters, - STATE(2621), 1, + STATE(2698), 1, sym_trait_bounds, - STATE(3359), 1, + STATE(3338), 1, sym_where_clause, - STATE(2268), 2, + STATE(2285), 2, + sym_line_comment, + sym_block_comment, + [71177] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5168), 1, + anon_sym_SEMI, + ACTIONS(5170), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_block, + STATE(2514), 1, + sym_where_clause, + STATE(3777), 1, + sym_label, + STATE(2286), 2, sym_line_comment, sym_block_comment, - [70433] = 11, + [71212] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2309), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3303), 1, - sym_enum_variant, - STATE(3688), 1, + STATE(3225), 1, + sym_field_declaration, + STATE(3506), 1, sym_visibility_modifier, - STATE(2269), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - [70468] = 11, + [71247] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + ACTIONS(5172), 1, anon_sym_SEMI, - ACTIONS(5154), 1, - anon_sym_DASH_GT, - STATE(614), 1, - sym_block, - STATE(2485), 1, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2460), 1, + sym_type_parameters, + STATE(3167), 1, + sym_trait_bounds, + STATE(3450), 1, sym_where_clause, - STATE(3740), 1, - sym_label, - STATE(2270), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - [70503] = 11, + [71282] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5156), 1, + ACTIONS(5176), 1, anon_sym_SEMI, - STATE(503), 1, + STATE(1361), 1, sym_block, - STATE(2501), 1, + STATE(2516), 1, sym_where_clause, - STATE(3740), 1, + STATE(3777), 1, sym_label, - STATE(2271), 2, - sym_line_comment, - sym_block_comment, - [70538] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5150), 1, - anon_sym_LT, - STATE(636), 1, - sym_declaration_list, - STATE(2473), 1, - sym_type_parameters, - STATE(2832), 1, - sym_trait_bounds, - STATE(3211), 1, - sym_where_clause, - STATE(2272), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - [70573] = 11, + [71317] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5158), 1, - anon_sym_SEMI, - ACTIONS(5160), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - STATE(1346), 1, + ACTIONS(5178), 1, + anon_sym_SEMI, + ACTIONS(5180), 1, + anon_sym_DASH_GT, + STATE(1373), 1, sym_block, - STATE(2569), 1, + STATE(2517), 1, sym_where_clause, - STATE(3743), 1, + STATE(3777), 1, sym_label, - STATE(2273), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [70608] = 11, + [71352] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5162), 1, + ACTIONS(5182), 1, anon_sym_SEMI, - ACTIONS(5164), 1, + ACTIONS(5184), 1, anon_sym_DASH_GT, - STATE(767), 1, + STATE(1354), 1, sym_block, - STATE(2585), 1, + STATE(2570), 1, sym_where_clause, - STATE(3740), 1, + STATE(3777), 1, sym_label, - STATE(2274), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - [70643] = 11, + [71387] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, + ACTIONS(4953), 1, sym_crate, - ACTIONS(5015), 1, + ACTIONS(5001), 1, sym_identifier, - STATE(1120), 1, - sym_attribute_item, - STATE(2283), 1, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(3381), 1, - sym_field_declaration, - STATE(3683), 1, + STATE(1254), 1, + sym_attribute_item, + STATE(3399), 1, + sym_enum_variant, + STATE(3794), 1, sym_visibility_modifier, - STATE(2275), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [70678] = 11, + [71422] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5150), 1, - anon_sym_LT, - STATE(717), 1, - sym_declaration_list, - STATE(2408), 1, - sym_type_parameters, - STATE(2602), 1, - sym_trait_bounds, - STATE(3302), 1, + ACTIONS(5186), 1, + anon_sym_SEMI, + STATE(1115), 1, + sym_block, + STATE(2519), 1, sym_where_clause, - STATE(2276), 2, + STATE(3777), 1, + sym_label, + STATE(2293), 2, sym_line_comment, sym_block_comment, - [70713] = 11, + [71457] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5166), 1, + ACTIONS(5188), 1, anon_sym_SEMI, - STATE(1116), 1, + STATE(1127), 1, sym_block, - STATE(2574), 1, + STATE(2521), 1, sym_where_clause, - STATE(3743), 1, + STATE(3777), 1, sym_label, - STATE(2277), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - [70748] = 11, + [71492] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5168), 1, + ACTIONS(5190), 1, anon_sym_SEMI, - ACTIONS(5170), 1, - anon_sym_DASH_GT, - STATE(1137), 1, + STATE(1138), 1, sym_block, - STATE(2580), 1, + STATE(2523), 1, sym_where_clause, - STATE(3743), 1, + STATE(3777), 1, sym_label, - STATE(2278), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - [70783] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [71527] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4973), 1, - sym_identifier, - ACTIONS(4979), 1, - sym_crate, - STATE(1077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, - sym_attribute_item, - STATE(2903), 1, - sym_enum_variant, - STATE(3688), 1, - sym_visibility_modifier, - STATE(2279), 2, + ACTIONS(1167), 1, + aux_sym_string_literal_token1, + STATE(2327), 1, + sym_string_literal, + STATE(2296), 2, sym_line_comment, sym_block_comment, - [70818] = 10, + ACTIONS(4861), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71552] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(1416), 1, + sym_declaration_list, + STATE(2433), 1, + sym_type_parameters, + STATE(2743), 1, + sym_trait_bounds, + STATE(3234), 1, + sym_where_clause, + STATE(2297), 2, + sym_line_comment, + sym_block_comment, + [71587] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5174), 1, + ACTIONS(5194), 1, anon_sym_RBRACE, - ACTIONS(5176), 1, + ACTIONS(5196), 1, anon_sym_DOT_DOT, - ACTIONS(5178), 1, + ACTIONS(5198), 1, anon_sym_COMMA, - ACTIONS(5180), 1, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5182), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - STATE(2280), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - STATE(2979), 2, + STATE(2941), 2, sym_field_pattern, sym_remaining_field_pattern, - [70851] = 11, + [71620] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, + ACTIONS(4947), 1, sym_identifier, - STATE(1077), 1, + ACTIONS(4953), 1, + sym_crate, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2983), 1, + STATE(3237), 1, sym_field_declaration, - STATE(3683), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2281), 2, - sym_line_comment, - sym_block_comment, - [70886] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5184), 1, - anon_sym_SEMI, - STATE(1267), 1, - sym_block, - STATE(2545), 1, - sym_where_clause, - STATE(3743), 1, - sym_label, - STATE(2282), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [70921] = 11, + [71655] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, + ACTIONS(4947), 1, sym_identifier, - STATE(1077), 1, + ACTIONS(4953), 1, + sym_crate, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(3224), 1, + STATE(3122), 1, sym_field_declaration, - STATE(3683), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2283), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [70956] = 11, + [71690] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5186), 1, - anon_sym_SEMI, - ACTIONS(5188), 1, - anon_sym_DASH_GT, - STATE(549), 1, - sym_block, - STATE(2519), 1, - sym_where_clause, - STATE(3740), 1, - sym_label, - STATE(2284), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, - [70991] = 4, + ACTIONS(5116), 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, + [71711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2285), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - ACTIONS(5097), 8, + ACTIONS(5116), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -175099,15 +176508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [71012] = 4, + [71732] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2286), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(5097), 8, + ACTIONS(5116), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -175116,446 +176525,552 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [71033] = 4, + [71753] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2287), 2, + ACTIONS(5207), 1, + anon_sym_fn, + ACTIONS(5209), 1, + anon_sym_extern, + STATE(2461), 1, + sym_extern_modifier, + STATE(2304), 3, sym_line_comment, sym_block_comment, - ACTIONS(5097), 8, + aux_sym_function_modifiers_repeat1, + ACTIONS(5204), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [71780] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5212), 1, anon_sym_SEMI, + ACTIONS(5214), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + STATE(697), 1, + sym_block, + STATE(2590), 1, + sym_where_clause, + STATE(3774), 1, + sym_label, + STATE(2305), 2, + sym_line_comment, + sym_block_comment, + [71815] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3448), 1, anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - [71054] = 10, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5216), 1, + anon_sym_SEMI, + ACTIONS(5218), 1, + anon_sym_DASH_GT, + STATE(1154), 1, + sym_block, + STATE(2595), 1, + sym_where_clause, + STATE(3777), 1, + sym_label, + STATE(2306), 2, + sym_line_comment, + sym_block_comment, + [71850] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5196), 1, anon_sym_DOT_DOT, - ACTIONS(5180), 1, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5182), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5190), 1, + ACTIONS(5220), 1, anon_sym_RBRACE, - ACTIONS(5192), 1, + ACTIONS(5222), 1, anon_sym_COMMA, - STATE(2288), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - STATE(3156), 2, + STATE(2880), 2, sym_field_pattern, sym_remaining_field_pattern, - [71087] = 11, + [71883] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, - anon_sym_SEMI, - STATE(591), 1, - sym_block, - STATE(2517), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(1315), 1, + sym_declaration_list, + STATE(2457), 1, + sym_type_parameters, + STATE(2651), 1, + sym_trait_bounds, + STATE(3448), 1, sym_where_clause, - STATE(3740), 1, - sym_label, - STATE(2289), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [71122] = 11, + [71918] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5196), 1, + ACTIONS(5224), 1, anon_sym_SEMI, - STATE(1195), 1, + STATE(779), 1, sym_block, - STATE(2581), 1, + STATE(2545), 1, sym_where_clause, - STATE(3743), 1, + STATE(3774), 1, sym_label, - STATE(2290), 2, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [71157] = 8, + [71953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - anon_sym_fn, - ACTIONS(5200), 1, - anon_sym_extern, - STATE(2304), 1, - aux_sym_function_modifiers_repeat1, - STATE(2467), 1, - sym_extern_modifier, - STATE(2291), 2, + ACTIONS(4732), 1, + anon_sym_trait, + ACTIONS(5226), 1, + anon_sym_impl, + STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(4670), 4, + ACTIONS(3566), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [71186] = 11, + anon_sym_extern, + [71978] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, - anon_sym_SEMI, - STATE(1222), 1, - sym_block, - STATE(2480), 1, - sym_where_clause, - STATE(3743), 1, - sym_label, - STATE(2292), 2, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5228), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [71221] = 11, + [72011] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5230), 1, anon_sym_SEMI, - STATE(1240), 1, + STATE(522), 1, sym_block, - STATE(2481), 1, + STATE(2548), 1, sym_where_clause, - STATE(3743), 1, + STATE(3774), 1, sym_label, - STATE(2293), 2, + STATE(2312), 2, + sym_line_comment, + sym_block_comment, + [72046] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(3059), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [71256] = 11, + [72081] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, + ACTIONS(5232), 1, anon_sym_SEMI, - ACTIONS(5208), 1, + ACTIONS(5234), 1, anon_sym_DASH_GT, - STATE(1275), 1, + STATE(746), 1, sym_block, - STATE(2559), 1, + STATE(2586), 1, sym_where_clause, - STATE(3743), 1, + STATE(3774), 1, sym_label, - STATE(2294), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [71291] = 11, + [72116] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5150), 1, - anon_sym_LT, - STATE(1404), 1, - sym_declaration_list, - STATE(2406), 1, - sym_type_parameters, - STATE(2594), 1, - sym_trait_bounds, - STATE(3264), 1, + ACTIONS(5236), 1, + anon_sym_SEMI, + ACTIONS(5238), 1, + anon_sym_DASH_GT, + STATE(643), 1, + sym_block, + STATE(2606), 1, sym_where_clause, - STATE(2295), 2, + STATE(3774), 1, + sym_label, + STATE(2315), 2, sym_line_comment, sym_block_comment, - [71326] = 11, + [72151] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5150), 1, + ACTIONS(5166), 1, anon_sym_LT, - STATE(721), 1, - sym_declaration_list, - STATE(2453), 1, + ACTIONS(5240), 1, + anon_sym_SEMI, + ACTIONS(5242), 1, + anon_sym_EQ, + STATE(2442), 1, sym_type_parameters, - STATE(2802), 1, + STATE(2889), 1, sym_trait_bounds, - STATE(3334), 1, + STATE(3253), 1, sym_where_clause, - STATE(2296), 2, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [71361] = 11, + [72186] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5150), 1, - anon_sym_LT, - ACTIONS(5210), 1, - anon_sym_SEMI, - ACTIONS(5212), 1, - anon_sym_EQ, - STATE(2432), 1, - sym_type_parameters, - STATE(3098), 1, - sym_trait_bounds, - STATE(3314), 1, - sym_where_clause, - STATE(2297), 2, + ACTIONS(5244), 1, + anon_sym_fn, + ACTIONS(5246), 1, + anon_sym_extern, + STATE(2304), 1, + aux_sym_function_modifiers_repeat1, + STATE(2461), 1, + sym_extern_modifier, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [71396] = 11, + ACTIONS(4682), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [72215] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, - anon_sym_LBRACE, ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5248), 1, anon_sym_SEMI, - ACTIONS(5216), 1, + ACTIONS(5250), 1, anon_sym_DASH_GT, - STATE(1330), 1, + STATE(595), 1, sym_block, - STATE(2560), 1, + STATE(2583), 1, sym_where_clause, - STATE(3743), 1, + STATE(3774), 1, sym_label, - STATE(2298), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - [71431] = 11, + [72250] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5252), 1, anon_sym_SEMI, - ACTIONS(5220), 1, + ACTIONS(5254), 1, anon_sym_DASH_GT, - STATE(665), 1, + STATE(663), 1, sym_block, - STATE(2504), 1, + STATE(2557), 1, sym_where_clause, - STATE(3740), 1, + STATE(3774), 1, sym_label, - STATE(2299), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [71466] = 11, + [72285] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5222), 1, + ACTIONS(5256), 1, anon_sym_SEMI, - ACTIONS(5224), 1, + ACTIONS(5258), 1, anon_sym_DASH_GT, - STATE(1369), 1, + STATE(1196), 1, sym_block, - STATE(2514), 1, + STATE(2600), 1, sym_where_clause, - STATE(3743), 1, + STATE(3777), 1, sym_label, - STATE(2300), 2, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [71501] = 11, + [72320] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5226), 1, - anon_sym_SEMI, - ACTIONS(5228), 1, - anon_sym_DASH_GT, - STATE(1310), 1, - sym_block, - STATE(2558), 1, - sym_where_clause, - STATE(3743), 1, - sym_label, - STATE(2301), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + STATE(1093), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1254), 1, + sym_attribute_item, + STATE(2925), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [71536] = 6, + [72355] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1275), 1, - aux_sym_string_literal_token1, - STATE(2306), 1, - sym_string_literal, - STATE(2302), 2, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5260), 1, + anon_sym_RBRACE, + ACTIONS(5262), 1, + anon_sym_COMMA, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71561] = 11, + STATE(3117), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72388] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(1205), 1, + sym_declaration_list, + STATE(2495), 1, + sym_type_parameters, + STATE(2841), 1, + sym_trait_bounds, + STATE(3233), 1, + sym_where_clause, + STATE(2323), 2, + sym_line_comment, + sym_block_comment, + [72423] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(4979), 1, - sym_crate, - ACTIONS(5015), 1, + ACTIONS(4947), 1, sym_identifier, - STATE(1077), 1, + ACTIONS(4953), 1, + sym_crate, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(3037), 1, + STATE(2937), 1, sym_field_declaration, - STATE(3683), 1, + STATE(3506), 1, sym_visibility_modifier, - STATE(2303), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [71596] = 7, + [72458] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5233), 1, - anon_sym_fn, - ACTIONS(5235), 1, - anon_sym_extern, - STATE(2467), 1, - sym_extern_modifier, - STATE(2304), 3, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(605), 1, + sym_declaration_list, + STATE(2504), 1, + sym_type_parameters, + STATE(2870), 1, + sym_trait_bounds, + STATE(3344), 1, + sym_where_clause, + STATE(2325), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5230), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71623] = 6, + [72493] = 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(4949), 1, - anon_sym_BANG, - STATE(2305), 2, + ACTIONS(3068), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + sym_crate, + ACTIONS(5001), 1, + sym_identifier, + STATE(1254), 1, + sym_attribute_item, + STATE(2292), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3425), 1, + sym_enum_variant, + STATE(3794), 1, + sym_visibility_modifier, + STATE(2326), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71648] = 4, + [72528] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2306), 2, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(5238), 8, + ACTIONS(5264), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -175564,4123 +177079,4333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71669] = 11, + [72549] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5240), 1, + ACTIONS(5266), 1, anon_sym_SEMI, - STATE(579), 1, + ACTIONS(5268), 1, + anon_sym_DASH_GT, + STATE(559), 1, sym_block, - STATE(2479), 1, + STATE(2558), 1, sym_where_clause, - STATE(3740), 1, + STATE(3774), 1, sym_label, - STATE(2307), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [71704] = 11, + [72584] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5242), 1, - anon_sym_SEMI, - STATE(731), 1, - sym_block, - STATE(2533), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + anon_sym_LT, + STATE(539), 1, + sym_declaration_list, + STATE(2414), 1, + sym_type_parameters, + STATE(2711), 1, + sym_trait_bounds, + STATE(3495), 1, sym_where_clause, - STATE(3740), 1, - sym_label, - STATE(2308), 2, - sym_line_comment, - sym_block_comment, - [71739] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4973), 1, - sym_identifier, - ACTIONS(4979), 1, - sym_crate, - STATE(1077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, - sym_attribute_item, - STATE(3271), 1, - sym_enum_variant, - STATE(3688), 1, - sym_visibility_modifier, - STATE(2309), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - [71774] = 11, + [72619] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5244), 1, + ACTIONS(5270), 1, anon_sym_SEMI, - ACTIONS(5246), 1, - anon_sym_DASH_GT, - STATE(708), 1, + STATE(1219), 1, sym_block, - STATE(2532), 1, + STATE(2609), 1, sym_where_clause, - STATE(3740), 1, + STATE(3777), 1, sym_label, - STATE(2310), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [71809] = 11, + [72654] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5150), 1, - anon_sym_LT, - STATE(1263), 1, - sym_declaration_list, - STATE(2396), 1, - sym_type_parameters, - STATE(2778), 1, - sym_trait_bounds, - STATE(3182), 1, - sym_where_clause, - STATE(2311), 2, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5272), 1, + anon_sym_RBRACE, + ACTIONS(5274), 1, + anon_sym_COMMA, + STATE(2331), 2, sym_line_comment, sym_block_comment, - [71844] = 11, + STATE(2879), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72687] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5150), 1, - anon_sym_LT, - ACTIONS(5248), 1, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5276), 1, anon_sym_SEMI, - ACTIONS(5250), 1, - anon_sym_EQ, - STATE(2397), 1, - sym_type_parameters, - STATE(2997), 1, - sym_trait_bounds, - STATE(3184), 1, + ACTIONS(5278), 1, + anon_sym_DASH_GT, + STATE(1256), 1, + sym_block, + STATE(2510), 1, sym_where_clause, - STATE(2312), 2, + STATE(3777), 1, + sym_label, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [71879] = 11, + [72722] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5160), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - ACTIONS(5254), 1, + ACTIONS(5282), 1, anon_sym_DASH_GT, - STATE(1181), 1, + STATE(1277), 1, sym_block, - STATE(2530), 1, + STATE(2512), 1, sym_where_clause, - STATE(3743), 1, + STATE(3777), 1, sym_label, - STATE(2313), 2, - sym_line_comment, - sym_block_comment, - [71914] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5176), 1, - anon_sym_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_ref, - ACTIONS(5182), 1, - sym_mutable_specifier, - ACTIONS(5256), 1, - anon_sym_RBRACE, - ACTIONS(5258), 1, - anon_sym_COMMA, - STATE(2314), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - STATE(3103), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71947] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [72757] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_POUND, - ACTIONS(4973), 1, - sym_identifier, - ACTIONS(4979), 1, - sym_crate, - STATE(1077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, - sym_attribute_item, - STATE(2994), 1, - sym_enum_variant, - STATE(3688), 1, - sym_visibility_modifier, - STATE(2315), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5284), 1, + anon_sym_SEMI, + STATE(626), 1, + sym_block, + STATE(2565), 1, + sym_where_clause, + STATE(3774), 1, + sym_label, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [71982] = 10, + [72792] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5176), 1, - anon_sym_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_ref, - ACTIONS(5182), 1, - sym_mutable_specifier, - ACTIONS(5260), 1, - anon_sym_RBRACE, - ACTIONS(5262), 1, - anon_sym_COMMA, - STATE(2316), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5286), 1, + anon_sym_SEMI, + STATE(509), 1, + sym_block, + STATE(2582), 1, + sym_where_clause, + STATE(3774), 1, + sym_label, + STATE(2335), 2, sym_line_comment, sym_block_comment, - STATE(3105), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72015] = 11, + [72827] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5264), 1, + ACTIONS(5288), 1, anon_sym_SEMI, - STATE(602), 1, + ACTIONS(5290), 1, + anon_sym_DASH_GT, + STATE(678), 1, sym_block, - STATE(2544), 1, + STATE(2571), 1, sym_where_clause, - STATE(3740), 1, + STATE(3774), 1, sym_label, - STATE(2317), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [72050] = 10, + [72862] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_PIPE, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4636), 1, - anon_sym_COLON, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5266), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2318), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5292), 1, + anon_sym_SEMI, + STATE(736), 1, + sym_block, + STATE(2578), 1, + sym_where_clause, + STATE(3774), 1, + sym_label, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [72083] = 10, + [72897] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5296), 1, + anon_sym_RPAREN, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_RBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - STATE(2227), 1, + STATE(2352), 1, aux_sym_macro_definition_repeat1, - STATE(3367), 1, + STATE(3364), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2319), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - [72115] = 10, + [72929] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, - anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(5276), 1, + ACTIONS(5304), 1, + anon_sym_EQ, + ACTIONS(5302), 2, anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_macro_definition_repeat1, - STATE(3204), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2320), 2, + anon_sym_COMMA, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [72147] = 5, + STATE(3056), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [72957] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5278), 1, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5308), 1, + anon_sym_STAR, + STATE(3139), 1, + sym_use_list, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5306), 2, sym_identifier, - STATE(2321), 2, + sym_super, + STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72169] = 10, + [72987] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, + ACTIONS(5310), 1, anon_sym_RBRACE, - STATE(2367), 1, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3183), 1, + STATE(3355), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2322), 2, - sym_line_comment, - sym_block_comment, - [72201] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5286), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5282), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2323), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [72229] = 9, + [73019] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5176), 1, - anon_sym_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_ref, - ACTIONS(5182), 1, - sym_mutable_specifier, - ACTIONS(5288), 1, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + ACTIONS(5312), 1, anon_sym_RBRACE, - STATE(2324), 2, + STATE(2385), 1, + aux_sym_macro_definition_repeat1, + STATE(3483), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2342), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72259] = 8, + [73051] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, + ACTIONS(4995), 1, anon_sym_DOT_DOT, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5290), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 2, + ACTIONS(4997), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5282), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2325), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - [72287] = 7, + ACTIONS(4708), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73077] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2326), 2, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5296), 1, + anon_sym_RBRACK, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + STATE(2353), 1, + aux_sym_macro_definition_repeat1, + STATE(3366), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72313] = 10, + [73109] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(2375), 1, + STATE(2354), 1, aux_sym_macro_definition_repeat1, - STATE(3342), 1, + STATE(3367), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2327), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [72345] = 7, + [73141] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, ACTIONS(5294), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2328), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3532), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [72371] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5268), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, + ACTIONS(5314), 1, anon_sym_RBRACK, - STATE(2347), 1, + STATE(2355), 1, aux_sym_macro_definition_repeat1, - STATE(3344), 1, + STATE(3368), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2329), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [72403] = 9, + [73173] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5316), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(484), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2347), 2, + sym_line_comment, + sym_block_comment, + [73205] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5196), 1, anon_sym_DOT_DOT, - ACTIONS(5180), 1, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5182), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5296), 1, + ACTIONS(5318), 1, anon_sym_RBRACE, - STATE(2330), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [72433] = 5, + [73235] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5298), 1, - anon_sym_trait, - STATE(2331), 2, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5322), 1, + anon_sym_async, + ACTIONS(5324), 1, + anon_sym_ref, + ACTIONS(5326), 1, + sym_mutable_specifier, + ACTIONS(5328), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72455] = 5, + [73267] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, + ACTIONS(5192), 1, sym_identifier, - STATE(2332), 2, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5330), 1, + anon_sym_RBRACE, + STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72477] = 10, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73297] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5334), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5336), 1, + anon_sym_RBRACK, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5302), 1, - anon_sym_RBRACE, - STATE(2227), 1, - aux_sym_macro_definition_repeat1, - STATE(3304), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2333), 2, + ACTIONS(5340), 1, + anon_sym_EQ, + STATE(3534), 1, + sym_delim_token_tree, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [72509] = 10, + [73329] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - STATE(2372), 1, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3188), 1, + STATE(3388), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2334), 2, + STATE(2352), 2, sym_line_comment, sym_block_comment, - [72541] = 8, + [73361] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5308), 1, - anon_sym_COLON, - ACTIONS(5310), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2335), 2, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + anon_sym_RBRACK, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3389), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [72569] = 10, + [73393] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_COLON_COLON, - ACTIONS(5312), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5314), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_RBRACK, - ACTIONS(5318), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5320), 1, - anon_sym_EQ, - STATE(3473), 1, - sym_delim_token_tree, - STATE(2336), 2, + ACTIONS(5344), 1, + anon_sym_RPAREN, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3390), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2354), 2, sym_line_comment, sym_block_comment, - [72601] = 10, + [73425] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4843), 1, - anon_sym_COLON_COLON, - ACTIONS(5312), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5314), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_RBRACK, - ACTIONS(5318), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5320), 1, - anon_sym_EQ, - STATE(3473), 1, - sym_delim_token_tree, - STATE(2337), 2, + ACTIONS(5344), 1, + anon_sym_RBRACK, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3391), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [72633] = 5, + [73457] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5322), 1, - sym_identifier, - STATE(2338), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5346), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72655] = 10, + [73485] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_LPAREN, - ACTIONS(5270), 1, - anon_sym_LBRACK, - ACTIONS(5274), 1, - anon_sym_LBRACE, - ACTIONS(5324), 1, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5346), 2, anon_sym_RPAREN, - STATE(2354), 1, - aux_sym_macro_definition_repeat1, - STATE(3411), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2339), 2, + anon_sym_COMMA, + STATE(2357), 2, sym_line_comment, sym_block_comment, - [72687] = 7, + [73513] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(5286), 1, + ACTIONS(5352), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2340), 2, + STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 3, + ACTIONS(3475), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [72713] = 10, - ACTIONS(3), 1, + [73539] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2359), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73565] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5354), 1, + anon_sym_move, + STATE(220), 1, + sym_closure_parameters, + STATE(1811), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2360), 2, + sym_line_comment, + sym_block_comment, + [73597] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5326), 1, - aux_sym_line_comment_token1, - ACTIONS(5328), 1, - aux_sym_line_comment_token3, - ACTIONS(5330), 1, - anon_sym_BANG2, - ACTIONS(5332), 1, - anon_sym_SLASH2, - STATE(3520), 1, - sym__line_doc_comment_marker, - STATE(3544), 1, - sym__inner_line_doc_comment_marker, - STATE(3563), 1, - sym__outer_line_doc_comment_marker, - STATE(2341), 2, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + ACTIONS(5356), 1, + anon_sym_SEMI, + STATE(692), 1, + sym_field_declaration_list, + STATE(3061), 1, + sym_ordered_field_declaration_list, + STATE(3247), 1, + sym_where_clause, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [72745] = 10, + [73629] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5334), 1, - anon_sym_RBRACE, - STATE(2227), 1, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(2378), 1, aux_sym_macro_definition_repeat1, - STATE(3305), 1, + STATE(3427), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2342), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [72777] = 9, + [73661] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 1, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5338), 1, - anon_sym_STAR, - STATE(3131), 1, - sym_use_list, - STATE(3600), 1, - sym_type_arguments, - ACTIONS(5336), 2, - sym_identifier, - sym_super, - STATE(2343), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5360), 1, + anon_sym_SEMI, + STATE(1202), 1, + sym_field_declaration_list, + STATE(2943), 1, + sym_ordered_field_declaration_list, + STATE(3230), 1, + sym_where_clause, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [72807] = 5, + [73693] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5340), 1, - anon_sym_trait, - STATE(2344), 2, + ACTIONS(5294), 1, + anon_sym_LPAREN, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, + anon_sym_LBRACE, + ACTIONS(5358), 1, + anon_sym_RBRACK, + STATE(2380), 1, + aux_sym_macro_definition_repeat1, + STATE(3436), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72829] = 8, + [73725] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5344), 1, - anon_sym_EQ, - ACTIONS(5342), 2, + ACTIONS(5362), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2345), 2, + STATE(2382), 1, + aux_sym_macro_definition_repeat1, + STATE(3438), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2365), 2, sym_line_comment, sym_block_comment, - STATE(2960), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72857] = 10, + [73757] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4855), 1, - anon_sym_COLON_COLON, - ACTIONS(5312), 1, + ACTIONS(5065), 1, anon_sym_LPAREN, - ACTIONS(5314), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_RBRACK, - ACTIONS(5318), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(5320), 1, - anon_sym_EQ, - STATE(3473), 1, - sym_delim_token_tree, - STATE(2346), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5364), 1, + anon_sym_SEMI, + STATE(1405), 1, + sym_field_declaration_list, + STATE(2899), 1, + sym_ordered_field_declaration_list, + STATE(3206), 1, + sym_where_clause, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [72889] = 10, + [73789] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_LPAREN, - ACTIONS(5270), 1, - anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, - anon_sym_RBRACK, - STATE(2227), 1, - aux_sym_macro_definition_repeat1, - STATE(3366), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2347), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5308), 1, + anon_sym_STAR, + STATE(3139), 1, + sym_use_list, + STATE(3591), 1, + sym_type_arguments, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [72921] = 9, + [73819] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5176), 1, - anon_sym_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_ref, - ACTIONS(5182), 1, - sym_mutable_specifier, - ACTIONS(5348), 1, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + anon_sym_EQ, + ACTIONS(5366), 2, anon_sym_RBRACE, - STATE(2348), 2, + anon_sym_COMMA, + STATE(2368), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72951] = 9, + STATE(3177), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73847] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5196), 1, anon_sym_DOT_DOT, - ACTIONS(5180), 1, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5182), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5350), 1, + ACTIONS(5370), 1, anon_sym_RBRACE, - STATE(2349), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [72981] = 9, + [73877] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5176), 1, - anon_sym_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_ref, - ACTIONS(5182), 1, - sym_mutable_specifier, - ACTIONS(5352), 1, - anon_sym_RBRACE, - STATE(2350), 2, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + ACTIONS(5372), 1, + anon_sym_SEMI, + STATE(602), 1, + sym_field_declaration_list, + STATE(2949), 1, + sym_ordered_field_declaration_list, + STATE(3245), 1, + sym_where_clause, + STATE(2370), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73011] = 9, + [73909] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5196), 1, anon_sym_DOT_DOT, - ACTIONS(5180), 1, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5182), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5354), 1, + ACTIONS(5374), 1, anon_sym_RBRACE, - STATE(2351), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [73041] = 10, + [73939] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_LPAREN, - ACTIONS(5270), 1, - anon_sym_LBRACK, - ACTIONS(5274), 1, - anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(2319), 1, - aux_sym_macro_definition_repeat1, - STATE(3195), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2352), 2, + ACTIONS(5376), 1, + anon_sym_trait, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [73073] = 8, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73961] = 5, 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, - anon_sym_COMMA, - STATE(2353), 2, + ACTIONS(5378), 1, + sym_identifier, + STATE(2373), 2, sym_line_comment, sym_block_comment, - STATE(2908), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73101] = 10, + ACTIONS(4887), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73983] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(4937), 1, + anon_sym_COLON_COLON, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5334), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RPAREN, - STATE(2227), 1, - aux_sym_macro_definition_repeat1, - STATE(3351), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2354), 2, + ACTIONS(5380), 1, + anon_sym_RBRACK, + ACTIONS(5382), 1, + anon_sym_EQ, + STATE(3595), 1, + sym_delim_token_tree, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [73133] = 10, + [74015] = 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(5045), 1, - anon_sym_LBRACE, - ACTIONS(5362), 1, - anon_sym_SEMI, - STATE(625), 1, - sym_field_declaration_list, - STATE(3013), 1, - sym_ordered_field_declaration_list, - STATE(3428), 1, - sym_where_clause, - STATE(2355), 2, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5384), 1, + anon_sym_RBRACE, + STATE(2375), 2, + sym_line_comment, + sym_block_comment, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74045] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5386), 1, + aux_sym_line_comment_token1, + ACTIONS(5388), 1, + aux_sym_line_comment_token3, + ACTIONS(5390), 1, + anon_sym_BANG2, + ACTIONS(5392), 1, + anon_sym_SLASH2, + STATE(3567), 1, + sym__inner_line_doc_comment_marker, + STATE(3677), 1, + sym__line_doc_comment_marker, + STATE(3789), 1, + sym__outer_line_doc_comment_marker, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [73165] = 7, + [74077] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4951), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(4955), 1, + ACTIONS(5394), 1, anon_sym_COLON_COLON, - ACTIONS(4953), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2356), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [73191] = 10, + ACTIONS(3475), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [74103] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5045), 1, + ACTIONS(5298), 1, + anon_sym_LBRACK, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5364), 1, - anon_sym_SEMI, - STATE(714), 1, - sym_field_declaration_list, - STATE(3117), 1, - sym_ordered_field_declaration_list, - STATE(3231), 1, - sym_where_clause, - STATE(2357), 2, + ACTIONS(5396), 1, + anon_sym_RPAREN, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3295), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [73223] = 10, + [74135] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5366), 1, + ACTIONS(5398), 1, anon_sym_RBRACE, - STATE(2227), 1, + STATE(2341), 1, aux_sym_macro_definition_repeat1, - STATE(3369), 1, + STATE(3485), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2358), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [73255] = 10, + [74167] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5324), 1, + ACTIONS(5396), 1, anon_sym_RBRACK, - STATE(2360), 1, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3165), 1, + STATE(3363), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2359), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - [73287] = 10, + [74199] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5400), 1, + anon_sym_RBRACE, + STATE(2381), 2, + sym_line_comment, + sym_block_comment, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74229] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RBRACK, - STATE(2227), 1, + ACTIONS(5402), 1, + anon_sym_RBRACE, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3353), 1, + STATE(3371), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2360), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [73319] = 9, + [74261] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(5192), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5196), 1, anon_sym_DOT_DOT, - ACTIONS(5180), 1, + ACTIONS(5200), 1, anon_sym_ref, - ACTIONS(5182), 1, + ACTIONS(5202), 1, sym_mutable_specifier, - ACTIONS(5368), 1, + ACTIONS(5404), 1, anon_sym_RBRACE, - STATE(2361), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, + STATE(3266), 2, sym_field_pattern, sym_remaining_field_pattern, - [73349] = 9, + [74291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5176), 1, - anon_sym_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_ref, - ACTIONS(5182), 1, - sym_mutable_specifier, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(2362), 2, + ACTIONS(5406), 1, + anon_sym_trait, + STATE(2384), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73379] = 10, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74313] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5372), 1, + ACTIONS(5408), 1, anon_sym_RBRACE, - STATE(2333), 1, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3202), 1, + STATE(3334), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2363), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [73411] = 10, + [74345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5410), 1, + sym_identifier, + STATE(2386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4887), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74367] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5334), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - anon_sym_RBRACE, - STATE(2342), 1, - aux_sym_macro_definition_repeat1, - STATE(3203), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2364), 2, + ACTIONS(5380), 1, + anon_sym_RBRACK, + ACTIONS(5382), 1, + anon_sym_EQ, + STATE(3595), 1, + sym_delim_token_tree, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + [74399] = 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(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5412), 1, + anon_sym_move, + STATE(215), 1, + sym_closure_parameters, + STATE(1463), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2388), 2, + sym_line_comment, + sym_block_comment, + [74431] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5416), 1, + anon_sym_COLON, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5414), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2389), 2, sym_line_comment, sym_block_comment, - [73443] = 10, + [74459] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(5312), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5314), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5318), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - anon_sym_RBRACK, - ACTIONS(5378), 1, - anon_sym_EQ, - STATE(3646), 1, - sym_delim_token_tree, - STATE(2365), 2, + ACTIONS(5420), 1, + anon_sym_RPAREN, + STATE(2396), 1, + aux_sym_macro_definition_repeat1, + STATE(3480), 1, + sym_macro_rule, + STATE(3661), 1, + sym_token_tree_pattern, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [73475] = 5, + [74491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5380), 1, + ACTIONS(5422), 1, sym_identifier, - STATE(2366), 2, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 6, + ACTIONS(4887), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73497] = 10, + [74513] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_LPAREN, - ACTIONS(5270), 1, - anon_sym_LBRACK, - ACTIONS(5274), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + ACTIONS(5424), 1, anon_sym_RBRACE, - STATE(2227), 1, - aux_sym_macro_definition_repeat1, - STATE(3354), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2367), 2, + STATE(2392), 2, sym_line_comment, sym_block_comment, - [73529] = 10, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74543] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, - anon_sym_RPAREN, - STATE(2371), 1, + ACTIONS(5420), 1, + anon_sym_RBRACK, + STATE(2399), 1, aux_sym_macro_definition_repeat1, - STATE(3338), 1, + STATE(3494), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2368), 2, + STATE(2393), 2, sym_line_comment, sym_block_comment, - [73561] = 10, + [74575] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, - anon_sym_RBRACK, - STATE(2373), 1, + ACTIONS(5426), 1, + anon_sym_RBRACE, + STATE(2395), 1, aux_sym_macro_definition_repeat1, - STATE(3340), 1, + STATE(3329), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2369), 2, - sym_line_comment, - sym_block_comment, - [73593] = 10, - 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(5041), 1, - anon_sym_where, - ACTIONS(5386), 1, - anon_sym_SEMI, - STATE(1380), 1, - sym_field_declaration_list, - STATE(3014), 1, - sym_ordered_field_declaration_list, - STATE(3253), 1, - sym_where_clause, - STATE(2370), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [73625] = 10, + [74607] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_RPAREN, - STATE(2227), 1, + ACTIONS(5428), 1, + anon_sym_RBRACE, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3363), 1, + STATE(3400), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2371), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - [73657] = 10, + [74639] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_RPAREN, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - STATE(2227), 1, + ACTIONS(5430), 1, + anon_sym_RPAREN, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3362), 1, + STATE(3382), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2372), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - [73689] = 10, + [74671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_LPAREN, - ACTIONS(5270), 1, - anon_sym_LBRACK, - ACTIONS(5274), 1, - anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_RBRACK, - STATE(2227), 1, - aux_sym_macro_definition_repeat1, - STATE(3364), 1, - sym_macro_rule, - STATE(3706), 1, - sym_token_tree_pattern, - STATE(2373), 2, + ACTIONS(5432), 1, + sym_identifier, + STATE(2397), 2, sym_line_comment, sym_block_comment, - [73721] = 10, + ACTIONS(4887), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74693] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5390), 1, - anon_sym_SEMI, - STATE(1200), 1, - sym_field_declaration_list, - STATE(3018), 1, - sym_ordered_field_declaration_list, - STATE(3357), 1, - sym_where_clause, - STATE(2374), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5434), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(1463), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2398), 2, sym_line_comment, sym_block_comment, - [73753] = 10, + [74725] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, + ACTIONS(5294), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5298), 1, anon_sym_LBRACK, - ACTIONS(5274), 1, + ACTIONS(5300), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(2227), 1, + ACTIONS(5430), 1, + anon_sym_RBRACK, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3365), 1, + STATE(3387), 1, sym_macro_rule, - STATE(3706), 1, + STATE(3661), 1, sym_token_tree_pattern, - STATE(2375), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [73785] = 9, + [74757] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(4648), 1, - anon_sym_LT2, + ACTIONS(4775), 1, + anon_sym_COLON_COLON, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, ACTIONS(5338), 1, - anon_sym_STAR, - STATE(3131), 1, - sym_use_list, - STATE(3774), 1, - sym_type_arguments, - ACTIONS(5336), 2, - sym_identifier, - sym_super, - STATE(2376), 2, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_RBRACK, + ACTIONS(5382), 1, + anon_sym_EQ, + STATE(3595), 1, + sym_delim_token_tree, + STATE(2400), 2, sym_line_comment, sym_block_comment, - [73815] = 9, + [74789] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5392), 1, - anon_sym_SEMI, - STATE(741), 1, - sym_declaration_list, - STATE(3010), 1, - sym_where_clause, - STATE(2377), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5436), 1, + anon_sym_move, + STATE(255), 1, + sym_closure_parameters, + STATE(1463), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2401), 2, sym_line_comment, sym_block_comment, - [73844] = 6, + [74821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3730), 2, - anon_sym_PLUS, + ACTIONS(5438), 1, anon_sym_DASH_GT, - ACTIONS(4947), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5394), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2378), 2, - sym_line_comment, - sym_block_comment, - [73867] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5397), 1, - sym_identifier, - ACTIONS(5399), 1, - anon_sym_ref, - ACTIONS(5401), 1, - sym_mutable_specifier, - ACTIONS(5403), 1, - anon_sym_move, - STATE(246), 1, - sym_closure_parameters, - STATE(2379), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - [73896] = 5, + ACTIONS(3770), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74842] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(977), 1, - anon_sym_DOT_DOT, - STATE(2380), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5127), 1, + anon_sym_for, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(979), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73917] = 5, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, - anon_sym_DOT_DOT, - STATE(2381), 2, + ACTIONS(5440), 1, + anon_sym_DASH_GT, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73938] = 5, + ACTIONS(3790), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_DOT_DOT, - STATE(2382), 2, + ACTIONS(5442), 1, + anon_sym_DASH_GT, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 5, - anon_sym_EQ_GT, + ACTIONS(3752), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74907] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(993), 1, - anon_sym_DOT_DOT, - STATE(2383), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(232), 1, + sym_closure_parameters, + STATE(412), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73980] = 4, + [74936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2384), 2, + ACTIONS(5446), 1, + anon_sym_COMMA, + STATE(2407), 3, sym_line_comment, sym_block_comment, - ACTIONS(5064), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + aux_sym_where_clause_repeat1, + ACTIONS(5444), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - [73999] = 5, + anon_sym_EQ, + anon_sym_SQUOTE, + [74957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4835), 1, anon_sym_DOT_DOT, - STATE(2385), 2, + STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 5, + ACTIONS(4833), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [74020] = 5, + [74978] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5405), 1, + ACTIONS(5449), 1, anon_sym_DASH_GT, - STATE(2386), 2, + STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 5, + ACTIONS(3746), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [74041] = 6, + [74999] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3654), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5407), 1, - anon_sym_EQ, - STATE(2387), 2, + STATE(592), 1, + sym_declaration_list, + STATE(2620), 1, + sym_trait_bounds, + STATE(3456), 1, + sym_where_clause, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 4, + [75028] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, anon_sym_PLUS, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5451), 1, anon_sym_GT, + ACTIONS(5453), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - [74064] = 8, + STATE(2912), 1, + sym_trait_bounds, + STATE(2913), 1, + aux_sym_type_arguments_repeat1, + STATE(2411), 2, + sym_line_comment, + sym_block_comment, + [75057] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - sym_identifier, - ACTIONS(5176), 1, - anon_sym_DOT_DOT, - ACTIONS(5180), 1, - anon_sym_ref, - ACTIONS(5182), 1, - sym_mutable_specifier, - STATE(2388), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5455), 1, + anon_sym_SEMI, + STATE(1325), 1, + sym_declaration_list, + STATE(2975), 1, + sym_where_clause, + STATE(2412), 2, sym_line_comment, sym_block_comment, - STATE(3199), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74091] = 5, + [75086] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5409), 1, - anon_sym_DASH_GT, - STATE(2389), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5457), 1, + anon_sym_SEMI, + STATE(1328), 1, + sym_declaration_list, + STATE(2976), 1, + sym_where_clause, + STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74112] = 9, + [75115] = 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(5071), 1, anon_sym_where, - ACTIONS(5411), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(1235), 1, - sym_enum_variant_list, - STATE(2761), 1, - sym_type_parameters, - STATE(3172), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(716), 1, + sym_declaration_list, + STATE(2667), 1, + sym_trait_bounds, + STATE(3263), 1, sym_where_clause, - STATE(2390), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - [74141] = 9, + [75144] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5413), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5459), 1, anon_sym_SEMI, - STATE(1249), 1, + STATE(1346), 1, sym_declaration_list, - STATE(2967), 1, + STATE(2979), 1, sym_where_clause, - STATE(2391), 2, + STATE(2415), 2, sym_line_comment, sym_block_comment, - [74170] = 9, + [75173] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - STATE(1269), 1, - sym_field_declaration_list, - STATE(2782), 1, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_enum_variant_list, + STATE(2877), 1, sym_type_parameters, - STATE(3187), 1, + STATE(3442), 1, sym_where_clause, - STATE(2392), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - [74199] = 6, + [75202] = 9, 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(2393), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5463), 1, + anon_sym_SEMI, + STATE(1349), 1, + sym_declaration_list, + STATE(2980), 1, + sym_where_clause, + STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74222] = 9, + [75231] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5465), 1, + anon_sym_SEMI, + STATE(1351), 1, + sym_declaration_list, + STATE(2983), 1, + sym_where_clause, + STATE(2418), 2, + sym_line_comment, + sym_block_comment, + [75260] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5415), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5467), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(1356), 1, sym_declaration_list, - STATE(3021), 1, + STATE(2984), 1, sym_where_clause, - STATE(2394), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - [74251] = 7, + [75289] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5286), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2395), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(232), 1, + sym_closure_parameters, + STATE(1526), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2420), 2, sym_line_comment, sym_block_comment, - [74276] = 9, + [75318] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(1387), 1, - sym_declaration_list, - STATE(2592), 1, - sym_trait_bounds, - STATE(3255), 1, + STATE(1304), 1, + sym_enum_variant_list, + STATE(2638), 1, + sym_type_parameters, + STATE(3428), 1, sym_where_clause, - STATE(2396), 2, + STATE(2421), 2, sym_line_comment, sym_block_comment, - [74305] = 9, + [75347] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5417), 1, - anon_sym_SEMI, - ACTIONS(5419), 1, - anon_sym_EQ, - STATE(3036), 1, - sym_trait_bounds, - STATE(3259), 1, - sym_where_clause, - STATE(2397), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5471), 1, + anon_sym_if, + STATE(3714), 1, + sym_label, + STATE(1441), 2, + sym_if_expression, + sym_block, + STATE(2422), 2, sym_line_comment, sym_block_comment, - [74334] = 9, + [75374] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5421), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5473), 1, anon_sym_SEMI, - STATE(1402), 1, + STATE(1309), 1, sym_declaration_list, - STATE(3145), 1, + STATE(3162), 1, sym_where_clause, - STATE(2398), 2, + STATE(2423), 2, sym_line_comment, sym_block_comment, - [74363] = 9, + [75403] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5411), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - STATE(1407), 1, - sym_enum_variant_list, - STATE(2596), 1, + STATE(537), 1, + sym_field_declaration_list, + STATE(2780), 1, sym_type_parameters, - STATE(3270), 1, + STATE(3486), 1, sym_where_clause, - STATE(2399), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [74392] = 9, + [75432] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1413), 1, - sym_field_declaration_list, - STATE(2597), 1, - sym_type_parameters, - STATE(3273), 1, - sym_where_clause, - STATE(2400), 2, + ACTIONS(5477), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym_where_clause_repeat1, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [74421] = 9, + ACTIONS(5475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [75455] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, + ACTIONS(3610), 2, anon_sym_PLUS, - ACTIONS(5148), 1, + anon_sym_DASH_GT, + ACTIONS(4959), 2, anon_sym_COLON, - ACTIONS(5423), 1, - anon_sym_GT, - ACTIONS(5425), 1, + anon_sym_PIPE, + ACTIONS(5479), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3061), 1, - sym_trait_bounds, - STATE(3070), 1, - aux_sym_type_arguments_repeat1, - STATE(2401), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - [74450] = 8, + [75478] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5427), 1, - anon_sym_if, - STATE(3680), 1, - sym_label, - STATE(1489), 2, - sym_if_expression, - sym_block, - STATE(2402), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5482), 1, + anon_sym_SEMI, + STATE(1160), 1, + sym_declaration_list, + STATE(2929), 1, + sym_where_clause, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [74477] = 9, + [75507] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5429), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5484), 1, anon_sym_SEMI, - STATE(1386), 1, + STATE(1400), 1, sym_declaration_list, - STATE(2942), 1, + STATE(2992), 1, sym_where_clause, - STATE(2403), 2, + STATE(2428), 2, sym_line_comment, sym_block_comment, - [74506] = 9, + [75536] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5431), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5486), 1, anon_sym_SEMI, - STATE(1408), 1, + STATE(1403), 1, sym_declaration_list, - STATE(2957), 1, + STATE(2993), 1, sym_where_clause, - STATE(2404), 2, + STATE(2429), 2, sym_line_comment, sym_block_comment, - [74535] = 9, + [75565] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5433), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5488), 1, anon_sym_SEMI, STATE(1165), 1, sym_declaration_list, - STATE(2993), 1, + STATE(2931), 1, sym_where_clause, - STATE(2405), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - [74564] = 9, + [75594] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(1177), 1, + ACTIONS(5490), 1, + anon_sym_SEMI, + STATE(628), 1, sym_declaration_list, - STATE(2617), 1, - sym_trait_bounds, - STATE(3349), 1, + STATE(2888), 1, sym_where_clause, - STATE(2406), 2, + STATE(2431), 2, sym_line_comment, sym_block_comment, - [74593] = 5, + [75623] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5435), 1, - anon_sym_DASH_GT, - STATE(2407), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5492), 1, + anon_sym_SEMI, + STATE(1187), 1, + sym_declaration_list, + STATE(2940), 1, + sym_where_clause, + STATE(2432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3670), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74614] = 9, + [75652] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, anon_sym_COLON, - STATE(779), 1, + STATE(1194), 1, sym_declaration_list, - STATE(2784), 1, + STATE(2833), 1, sym_trait_bounds, - STATE(3240), 1, + STATE(3219), 1, sym_where_clause, - STATE(2408), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - [74643] = 9, + [75681] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5437), 1, + ACTIONS(5494), 1, anon_sym_SEMI, - STATE(635), 1, + STATE(615), 1, sym_declaration_list, - STATE(3108), 1, + STATE(3001), 1, sym_where_clause, - STATE(2409), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [74672] = 9, + [75710] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3734), 1, + anon_sym_COLON, + ACTIONS(5496), 1, + anon_sym_EQ, + STATE(2435), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3732), 4, anon_sym_PLUS, - ACTIONS(5041), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [75733] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5439), 1, + ACTIONS(5498), 1, anon_sym_SEMI, - STATE(1271), 1, + STATE(568), 1, sym_declaration_list, - STATE(2849), 1, + STATE(3089), 1, sym_where_clause, - STATE(2410), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - [74701] = 9, + [75762] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5441), 1, - anon_sym_SEMI, - STATE(1274), 1, - sym_declaration_list, - STATE(2850), 1, - sym_where_clause, - STATE(2411), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5500), 1, + anon_sym_GT, + ACTIONS(5502), 1, + anon_sym_COMMA, + STATE(2966), 1, + sym_trait_bounds, + STATE(2967), 1, + aux_sym_type_arguments_repeat1, + STATE(2437), 2, sym_line_comment, sym_block_comment, - [74730] = 9, + [75791] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5504), 1, anon_sym_SEMI, - STATE(1309), 1, + STATE(634), 1, sym_declaration_list, - STATE(2855), 1, + STATE(2918), 1, sym_where_clause, - STATE(2412), 2, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [74759] = 9, + [75820] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5133), 1, + anon_sym_for, + STATE(2439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5116), 1, + [75843] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5445), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5506), 1, anon_sym_SEMI, - STATE(1315), 1, + STATE(1370), 1, sym_declaration_list, - STATE(2856), 1, + STATE(2895), 1, sym_where_clause, - STATE(2413), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [74788] = 9, + [75872] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(1325), 1, - sym_declaration_list, - STATE(2645), 1, - sym_trait_bounds, - STATE(3402), 1, - sym_where_clause, - STATE(2414), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(219), 1, + sym_closure_parameters, + STATE(1526), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [74817] = 5, + [75901] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5447), 1, - anon_sym_DASH_GT, - STATE(2415), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5508), 1, + anon_sym_SEMI, + ACTIONS(5510), 1, + anon_sym_EQ, + STATE(3086), 1, + sym_trait_bounds, + STATE(3282), 1, + sym_where_clause, + STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74838] = 5, + [75930] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5449), 1, - anon_sym_DASH_GT, - STATE(2416), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5512), 1, + anon_sym_SEMI, + STATE(772), 1, + sym_declaration_list, + STATE(3049), 1, + sym_where_clause, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74859] = 9, + [75959] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5045), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - STATE(724), 1, - sym_field_declaration_list, - STATE(2845), 1, + STATE(607), 1, + sym_enum_variant_list, + STATE(2807), 1, sym_type_parameters, - STATE(3233), 1, + STATE(3434), 1, sym_where_clause, - STATE(2417), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, - [74888] = 9, + [75988] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5451), 1, - anon_sym_SEMI, - STATE(1358), 1, - sym_declaration_list, - STATE(2904), 1, - sym_where_clause, - STATE(2418), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5514), 1, + anon_sym_GT, + ACTIONS(5516), 1, + anon_sym_COMMA, + STATE(3040), 1, + sym_trait_bounds, + STATE(3041), 1, + aux_sym_type_arguments_repeat1, + STATE(2445), 2, sym_line_comment, sym_block_comment, - [74917] = 9, + [76017] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(5518), 1, anon_sym_SEMI, - STATE(1360), 1, + STATE(667), 1, sym_declaration_list, - STATE(2905), 1, + STATE(3187), 1, sym_where_clause, - STATE(2419), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - [74946] = 9, + [76046] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5455), 1, + ACTIONS(5520), 1, anon_sym_SEMI, - STATE(1389), 1, + STATE(630), 1, sym_declaration_list, - STATE(2909), 1, + STATE(2908), 1, sym_where_clause, - STATE(2420), 2, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [74975] = 9, + [76075] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(5457), 1, - anon_sym_SEMI, - STATE(1394), 1, - sym_declaration_list, - STATE(2910), 1, - sym_where_clause, - STATE(2421), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5522), 1, + anon_sym_if, + STATE(3778), 1, + sym_label, + STATE(485), 2, + sym_if_expression, + sym_block, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [75004] = 9, + [76102] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5459), 1, - anon_sym_SEMI, - STATE(1107), 1, - sym_declaration_list, - STATE(2919), 1, - sym_where_clause, - STATE(2422), 2, + ACTIONS(4825), 1, + anon_sym_DOT_DOT, + ACTIONS(4827), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [75033] = 9, + ACTIONS(4654), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76125] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5461), 1, - anon_sym_SEMI, - STATE(1110), 1, - sym_declaration_list, - STATE(2921), 1, - sym_where_clause, - STATE(2423), 2, + ACTIONS(5192), 1, + sym_identifier, + ACTIONS(5196), 1, + anon_sym_DOT_DOT, + ACTIONS(5200), 1, + anon_sym_ref, + ACTIONS(5202), 1, + sym_mutable_specifier, + STATE(2450), 2, sym_line_comment, sym_block_comment, - [75062] = 6, + STATE(3266), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [76152] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5465), 1, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5414), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2430), 1, - aux_sym_where_clause_repeat1, - STATE(2424), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(5463), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75085] = 9, + [76177] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5524), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + [76202] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5414), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2453), 2, + sym_line_comment, + sym_block_comment, + [76227] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4959), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3610), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(5041), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [76248] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5467), 1, + ACTIONS(5526), 1, anon_sym_SEMI, - STATE(1184), 1, + STATE(705), 1, sym_declaration_list, - STATE(2932), 1, + STATE(3158), 1, sym_where_clause, - STATE(2425), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - [75114] = 9, + [76277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(5528), 1, + anon_sym_DASH_GT, + STATE(2456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3764), 5, + anon_sym_COLON, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [76298] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, - anon_sym_SEMI, - STATE(1187), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(1408), 1, sym_declaration_list, - STATE(2933), 1, + STATE(2740), 1, + sym_trait_bounds, + STATE(3209), 1, sym_where_clause, - STATE(2426), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [75143] = 9, + [76327] = 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(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5471), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(640), 1, - sym_enum_variant_list, - STATE(2844), 1, - sym_type_parameters, - STATE(3249), 1, + ACTIONS(5530), 1, + anon_sym_SEMI, + STATE(636), 1, + sym_declaration_list, + STATE(2947), 1, sym_where_clause, - STATE(2427), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [75172] = 9, + [76356] = 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(5471), 1, - anon_sym_LBRACE, - STATE(651), 1, - sym_enum_variant_list, - STATE(2759), 1, - sym_type_parameters, - STATE(3284), 1, - sym_where_clause, - STATE(2428), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5524), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [75201] = 5, + [76381] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5473), 1, - anon_sym_DASH_GT, - STATE(2429), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5532), 1, + anon_sym_SEMI, + ACTIONS(5534), 1, + anon_sym_EQ, + STATE(2900), 1, + sym_trait_bounds, + STATE(3189), 1, + sym_where_clause, + STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [75222] = 6, + [76410] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5475), 1, - anon_sym_COMMA, - STATE(2446), 1, - aux_sym_where_clause_repeat1, - STATE(2430), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75245] = 9, + ACTIONS(3566), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76429] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5477), 1, - anon_sym_GT, - ACTIONS(5479), 1, - anon_sym_COMMA, - STATE(3100), 1, - sym_trait_bounds, - STATE(3104), 1, - aux_sym_type_arguments_repeat1, - STATE(2431), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5536), 1, + anon_sym_SEMI, + STATE(1415), 1, + sym_declaration_list, + STATE(2902), 1, + sym_where_clause, + STATE(2462), 2, sym_line_comment, sym_block_comment, - [75274] = 9, + [76458] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5481), 1, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5538), 1, anon_sym_SEMI, - ACTIONS(5483), 1, - anon_sym_EQ, - STATE(3094), 1, - sym_trait_bounds, - STATE(3192), 1, + STATE(774), 1, + sym_declaration_list, + STATE(3077), 1, sym_where_clause, - STATE(2432), 2, + STATE(2463), 2, sym_line_comment, sym_block_comment, - [75303] = 8, + [76487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5485), 1, - anon_sym_if, - STATE(3744), 1, - sym_label, - STATE(480), 2, - sym_if_expression, - sym_block, - STATE(2433), 2, + ACTIONS(975), 1, + anon_sym_DOT_DOT, + STATE(2464), 2, sym_line_comment, sym_block_comment, - [75330] = 9, + ACTIONS(977), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76508] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(5487), 1, - anon_sym_SEMI, - STATE(670), 1, - sym_declaration_list, - STATE(3006), 1, - sym_where_clause, - STATE(2434), 2, + ACTIONS(951), 1, + anon_sym_DOT_DOT, + STATE(2465), 2, sym_line_comment, sym_block_comment, - [75359] = 7, + ACTIONS(953), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, + ACTIONS(4783), 1, anon_sym_DOT_DOT, - ACTIONS(5286), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4781), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5489), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2435), 2, + anon_sym_if, + [76550] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5162), 1, + anon_sym_for, + STATE(2467), 2, sym_line_comment, sym_block_comment, - [75384] = 9, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5491), 1, - anon_sym_GT, - ACTIONS(5493), 1, - anon_sym_COMMA, - STATE(2891), 1, - sym_trait_bounds, - STATE(2892), 1, - aux_sym_type_arguments_repeat1, - STATE(2436), 2, + ACTIONS(955), 1, + anon_sym_DOT_DOT, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [75413] = 8, + ACTIONS(957), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76594] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5495), 1, - anon_sym_if, - STATE(3745), 1, - sym_label, - STATE(1830), 2, - sym_if_expression, + STATE(234), 1, + sym_closure_parameters, + STATE(1526), 1, sym_block, - STATE(2437), 2, + STATE(3714), 1, + sym_label, + STATE(2469), 2, sym_line_comment, sym_block_comment, - [75440] = 5, + [76623] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(5164), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2438), 2, + ACTIONS(5540), 1, + anon_sym_GT, + ACTIONS(5542), 1, + anon_sym_COMMA, + STATE(3075), 1, + sym_trait_bounds, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3730), 4, - anon_sym_RPAREN, - anon_sym_PLUS, + [76652] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5544), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [75461] = 5, + STATE(2407), 1, + aux_sym_where_clause_repeat1, + STATE(2471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3524), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [76675] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4925), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2439), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5546), 1, + anon_sym_if, + STATE(3779), 1, + sym_label, + STATE(1845), 2, + sym_if_expression, + sym_block, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3726), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [75482] = 9, + [76702] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5069), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(645), 1, + STATE(1317), 1, sym_field_declaration_list, - STATE(2641), 1, + STATE(2666), 1, sym_type_parameters, - STATE(3311), 1, + STATE(3453), 1, sym_where_clause, - STATE(2440), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [75511] = 9, + [76731] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(5548), 1, anon_sym_SEMI, - STATE(733), 1, + STATE(725), 1, sym_declaration_list, - STATE(2982), 1, + STATE(2944), 1, sym_where_clause, - STATE(2441), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [75540] = 9, + [76760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(1013), 1, + anon_sym_DOT_DOT, + STATE(2475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1015), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76781] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5499), 1, + ACTIONS(5550), 1, anon_sym_SEMI, - STATE(735), 1, + STATE(727), 1, sym_declaration_list, - STATE(2986), 1, + STATE(2968), 1, sym_where_clause, - STATE(2442), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [75569] = 9, + [76810] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5143), 1, + anon_sym_for, + STATE(2477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3475), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5074), 1, + [76833] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5501), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5552), 1, anon_sym_SEMI, - STATE(674), 1, + STATE(1221), 1, sym_declaration_list, - STATE(3034), 1, + STATE(2959), 1, sym_where_clause, - STATE(2443), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - [75598] = 9, + [76862] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(5554), 1, anon_sym_SEMI, - STATE(571), 1, + STATE(729), 1, sym_declaration_list, - STATE(2857), 1, + STATE(3095), 1, sym_where_clause, - STATE(2444), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [75627] = 9, + [76891] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5505), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5556), 1, anon_sym_SEMI, - STATE(573), 1, + STATE(1223), 1, sym_declaration_list, - STATE(2899), 1, + STATE(2960), 1, sym_where_clause, - STATE(2445), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [75656] = 5, + [76920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5509), 1, - anon_sym_COMMA, - STATE(2446), 3, + STATE(2481), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5507), 4, - anon_sym_SEMI, + ACTIONS(5150), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75677] = 5, + anon_sym_RBRACE, + [76939] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_DOT_DOT, - STATE(2447), 2, + ACTIONS(5558), 1, + anon_sym_RBRACK, + ACTIONS(4975), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(4757), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75698] = 6, + ACTIONS(3760), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76962] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, - anon_sym_RBRACK, - ACTIONS(4925), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2448), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5145), 1, + anon_sym_for, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3726), 3, + ACTIONS(3475), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [75721] = 9, + anon_sym_where, + [76985] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5515), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5561), 1, anon_sym_SEMI, - STATE(511), 1, + STATE(1228), 1, sym_declaration_list, - STATE(3022), 1, + STATE(2962), 1, sym_where_clause, - STATE(2449), 2, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [75750] = 6, + [77014] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(5083), 1, - anon_sym_for, - STATE(2450), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(232), 1, + sym_closure_parameters, + STATE(495), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75773] = 6, + [77043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_RBRACK, - ACTIONS(4947), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2451), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, + anon_sym_for, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3730), 3, + ACTIONS(3475), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [75796] = 9, + anon_sym_where, + [77066] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(5563), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(731), 1, sym_declaration_list, - STATE(2876), 1, + STATE(3180), 1, sym_where_clause, - STATE(2452), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [75825] = 9, + [77095] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(628), 1, - sym_declaration_list, - STATE(2793), 1, - sym_trait_bounds, - STATE(3451), 1, + STATE(541), 1, + sym_field_declaration_list, + STATE(2766), 1, + sym_type_parameters, + STATE(3372), 1, sym_where_clause, - STATE(2453), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - [75854] = 8, + [77124] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - ACTIONS(5519), 1, - anon_sym_GT, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(3096), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3532), 2, + ACTIONS(3166), 1, anon_sym_PLUS, - anon_sym_as, - STATE(2454), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5565), 1, + anon_sym_SEMI, + STATE(1230), 1, + sym_declaration_list, + STATE(2963), 1, + sym_where_clause, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [75881] = 9, + [77153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(5523), 1, - anon_sym_SEMI, - STATE(739), 1, - sym_declaration_list, - STATE(3007), 1, - sym_where_clause, - STATE(2455), 2, + ACTIONS(4975), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2490), 2, sym_line_comment, sym_block_comment, - [75910] = 9, + ACTIONS(3760), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [77174] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - ACTIONS(5525), 1, - anon_sym_SEMI, - STATE(616), 1, - sym_declaration_list, - STATE(2915), 1, + STATE(1419), 1, + sym_enum_variant_list, + STATE(2747), 1, + sym_type_parameters, + STATE(3246), 1, sym_where_clause, - STATE(2456), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - [75939] = 6, + [77203] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, + ACTIONS(4763), 1, anon_sym_COLON_COLON, - ACTIONS(5136), 1, + ACTIONS(5055), 1, anon_sym_for, - STATE(2457), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75962] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2458), 2, - sym_line_comment, - sym_block_comment, - [75987] = 9, + [77226] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5527), 1, - anon_sym_SEMI, - STATE(662), 1, - sym_declaration_list, - STATE(3031), 1, - sym_where_clause, - STATE(2459), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(256), 1, + sym_closure_parameters, + STATE(1819), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2493), 2, sym_line_comment, sym_block_comment, - [76016] = 7, + [77255] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5489), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2460), 2, + ACTIONS(5567), 1, + anon_sym_DASH_GT, + STATE(2494), 2, sym_line_comment, sym_block_comment, - [76041] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3726), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4925), 2, + ACTIONS(3740), 5, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5512), 2, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - STATE(2461), 2, - sym_line_comment, - sym_block_comment, - [76064] = 9, + anon_sym_as, + [77276] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, - anon_sym_SEMI, - STATE(528), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(1275), 1, sym_declaration_list, - STATE(2920), 1, + STATE(2854), 1, + sym_trait_bounds, + STATE(3331), 1, sym_where_clause, - STATE(2462), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - [76093] = 9, + [77305] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - ACTIONS(5531), 1, - anon_sym_SEMI, - STATE(530), 1, - sym_declaration_list, - STATE(2937), 1, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1424), 1, + sym_field_declaration_list, + STATE(2749), 1, + sym_type_parameters, + STATE(3267), 1, sym_where_clause, - STATE(2463), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [76122] = 9, + [77334] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5533), 1, - anon_sym_GT, - ACTIONS(5535), 1, + ACTIONS(5479), 1, + anon_sym_RBRACK, + ACTIONS(4959), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2923), 1, - sym_trait_bounds, - STATE(2925), 1, - aux_sym_type_arguments_repeat1, - STATE(2464), 2, + STATE(2497), 2, sym_line_comment, sym_block_comment, - [76151] = 6, + ACTIONS(3610), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [77357] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(5031), 1, - anon_sym_for, - STATE(2465), 2, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4975), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5558), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76174] = 9, + [77380] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(5569), 1, anon_sym_SEMI, - STATE(532), 1, + STATE(784), 1, sym_declaration_list, - STATE(3003), 1, + STATE(3108), 1, sym_where_clause, - STATE(2466), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [76203] = 4, + [77409] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2467), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5571), 1, + anon_sym_if, + STATE(3621), 1, + sym_label, + STATE(404), 2, + sym_if_expression, + sym_block, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76222] = 9, + [77436] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5573), 1, + anon_sym_DASH_GT, + STATE(2501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3776), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77457] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5539), 1, + ACTIONS(5575), 1, anon_sym_SEMI, - STATE(534), 1, + STATE(564), 1, sym_declaration_list, - STATE(3012), 1, + STATE(3085), 1, sym_where_clause, - STATE(2468), 2, + STATE(2502), 2, sym_line_comment, sym_block_comment, - [76251] = 6, + [77486] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(5120), 1, - anon_sym_for, - STATE(2469), 2, + ACTIONS(5577), 1, + anon_sym_GT, + ACTIONS(5579), 1, + anon_sym_COMMA, + STATE(3148), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3475), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76274] = 9, + [77513] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5541), 1, - anon_sym_SEMI, - STATE(700), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(676), 1, sym_declaration_list, - STATE(2853), 1, + STATE(2722), 1, + sym_trait_bounds, + STATE(3352), 1, sym_where_clause, - STATE(2470), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - [76303] = 6, + [77542] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(5124), 1, - anon_sym_for, - STATE(2471), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3166), 1, anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - [76326] = 6, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(5581), 1, + anon_sym_SEMI, + STATE(587), 1, + sym_declaration_list, + STATE(3159), 1, + sym_where_clause, + STATE(2505), 2, + sym_line_comment, + sym_block_comment, + [77571] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, + ACTIONS(4763), 1, anon_sym_COLON_COLON, - ACTIONS(5122), 1, + ACTIONS(5099), 1, anon_sym_for, - STATE(2472), 2, + STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, + ACTIONS(3475), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76349] = 9, + [77594] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(705), 1, + ACTIONS(5583), 1, + anon_sym_SEMI, + STATE(707), 1, sym_declaration_list, - STATE(2674), 1, - sym_trait_bounds, - STATE(3410), 1, + STATE(3160), 1, sym_where_clause, - STATE(2473), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - [76378] = 6, + [77623] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(5126), 1, - anon_sym_for, - STATE(2474), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, + ACTIONS(343), 1, anon_sym_LBRACE, + ACTIONS(3166), 1, anon_sym_PLUS, - anon_sym_where, - [76401] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(5130), 1, - anon_sym_for, - STATE(2475), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1513), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76424] = 5, + [77649] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5543), 1, - anon_sym_DASH_GT, - STATE(2476), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76445] = 8, - ACTIONS(19), 1, + ACTIONS(3586), 5, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77667] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5545), 1, - anon_sym_if, - STATE(3463), 1, - sym_label, - STATE(412), 2, - sym_if_expression, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5585), 1, + anon_sym_SEMI, + STATE(1359), 1, sym_block, - STATE(2477), 2, + STATE(3777), 1, + sym_label, + STATE(2510), 2, sym_line_comment, sym_block_comment, - [76472] = 6, + [77693] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - anon_sym_COLON_COLON, - ACTIONS(5551), 1, - anon_sym_as, - STATE(2478), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5500), 1, + anon_sym_GT, + ACTIONS(5502), 1, + anon_sym_COMMA, + STATE(2966), 1, + sym_trait_bounds, + STATE(2967), 1, + aux_sym_type_arguments_repeat1, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(5547), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76494] = 8, + [77719] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5140), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5587), 1, anon_sym_SEMI, - STATE(599), 1, + STATE(1375), 1, sym_block, - STATE(3740), 1, + STATE(3777), 1, sym_label, - STATE(2479), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - [76520] = 8, + [77745] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - ACTIONS(5555), 1, - anon_sym_SEMI, - STATE(1245), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2480), 2, + ACTIONS(5591), 1, + anon_sym_STAR, + STATE(3129), 1, + sym_use_list, + ACTIONS(5589), 2, + sym_identifier, + sym_super, + STATE(2513), 2, sym_line_comment, sym_block_comment, - [76546] = 8, + [77769] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, + ACTIONS(5593), 1, anon_sym_SEMI, - STATE(1256), 1, + STATE(1382), 1, sym_block, - STATE(3743), 1, + STATE(3777), 1, sym_label, - STATE(2481), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - [76572] = 8, + [77795] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5418), 1, anon_sym_COLON_COLON, - STATE(1298), 1, - sym_parameters, - STATE(2012), 1, - sym_type_arguments, - STATE(2482), 2, - sym_line_comment, - sym_block_comment, - [76598] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5559), 1, - anon_sym_STAR_SLASH, - ACTIONS(5561), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5563), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5565), 1, - sym__block_comment_content, - STATE(3325), 1, - sym__block_doc_comment_marker, - STATE(2483), 2, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2515), 2, sym_line_comment, sym_block_comment, - [76624] = 8, + [77819] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5567), 1, - anon_sym_move, - STATE(1793), 1, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5595), 1, + anon_sym_SEMI, + STATE(1117), 1, sym_block, - STATE(3745), 1, + STATE(3777), 1, sym_label, - STATE(2484), 2, + STATE(2516), 2, sym_line_comment, sym_block_comment, - [76650] = 8, + [77845] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5140), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5569), 1, + ACTIONS(5597), 1, anon_sym_SEMI, - STATE(667), 1, + STATE(1125), 1, sym_block, - STATE(3740), 1, + STATE(3777), 1, sym_label, - STATE(2485), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [76676] = 6, + [77871] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5573), 1, - anon_sym_COLON_COLON, - ACTIONS(5575), 1, - anon_sym_as, - STATE(2486), 2, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(5571), 3, + ACTIONS(5599), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [76698] = 4, + anon_sym_where, + [77889] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2487), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5601), 1, + anon_sym_SEMI, + STATE(1135), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(5577), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [76716] = 4, + [77915] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2488), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5579), 5, - anon_sym_SEMI, + ACTIONS(343), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - [76734] = 5, + STATE(1532), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2520), 2, + sym_line_comment, + sym_block_comment, + [77941] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5003), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2489), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5603), 1, + anon_sym_SEMI, + STATE(1140), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [76754] = 7, + [77967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(5583), 1, - anon_sym_STAR, - STATE(3152), 1, - sym_use_list, - ACTIONS(5581), 2, - sym_identifier, - sym_super, - STATE(2490), 2, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [76778] = 8, + ACTIONS(5605), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77985] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5585), 1, - sym_identifier, - ACTIONS(5587), 1, - anon_sym_GT, - ACTIONS(5589), 1, - anon_sym_COMMA, - STATE(3077), 1, - sym_lifetime, - STATE(2491), 2, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5607), 1, + anon_sym_SEMI, + STATE(1144), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2523), 2, sym_line_comment, sym_block_comment, - [76804] = 7, + [78011] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(2966), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3209), 1, - sym_trait_bounds, - ACTIONS(5591), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2492), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1521), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2524), 2, sym_line_comment, sym_block_comment, - [76828] = 4, + [78037] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1510), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76846] = 8, + [78063] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON_COLON, - STATE(1685), 1, - sym_parameters, - STATE(2012), 1, - sym_type_arguments, - STATE(2494), 2, + ACTIONS(5609), 1, + anon_sym_RPAREN, + ACTIONS(5612), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2526), 2, sym_line_comment, sym_block_comment, - [76872] = 6, + [78087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, - anon_sym_as, - ACTIONS(5593), 1, + ACTIONS(5617), 1, anon_sym_COLON_COLON, - STATE(2495), 2, + ACTIONS(5619), 1, + anon_sym_as, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(5547), 3, + ACTIONS(5615), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [76894] = 7, + [78109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, + ACTIONS(3475), 1, anon_sym_PLUS, - ACTIONS(5148), 1, + ACTIONS(4654), 2, anon_sym_COLON, - STATE(3459), 1, - sym_trait_bounds, - ACTIONS(5595), 2, - anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5621), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2496), 2, + STATE(2528), 2, sym_line_comment, sym_block_comment, - [76918] = 5, + [78131] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3808), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2497), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76938] = 8, + ACTIONS(5624), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78149] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5477), 1, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5626), 1, + sym_identifier, + ACTIONS(5628), 1, anon_sym_GT, - ACTIONS(5479), 1, + ACTIONS(5630), 1, anon_sym_COMMA, - STATE(3100), 1, - sym_trait_bounds, - STATE(3104), 1, - aux_sym_type_arguments_repeat1, - STATE(2498), 2, + STATE(3035), 1, + sym_lifetime, + STATE(2530), 2, sym_line_comment, sym_block_comment, - [76964] = 5, + [78175] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2499), 2, + ACTIONS(4316), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, + anon_sym_STAR, + STATE(3139), 1, + sym_use_list, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76984] = 7, + [78199] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5597), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3119), 1, - aux_sym_parameters_repeat1, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2500), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4680), 1, + anon_sym_COLON_COLON, + STATE(1708), 1, + sym_parameters, + STATE(2030), 1, + sym_type_arguments, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [77008] = 8, + [78225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5601), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2501), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - [77034] = 7, + ACTIONS(5632), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78243] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5603), 1, - anon_sym_COMMA, - STATE(3016), 1, - aux_sym_parameters_repeat1, - ACTIONS(4630), 2, + ACTIONS(5164), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2502), 2, + ACTIONS(5514), 1, + anon_sym_GT, + ACTIONS(5516), 1, + anon_sym_COMMA, + STATE(3040), 1, + sym_trait_bounds, + STATE(3041), 1, + aux_sym_type_arguments_repeat1, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [77058] = 8, + [78269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(5605), 1, - anon_sym_SEMI, - ACTIONS(5607), 1, - anon_sym_COLON, - ACTIONS(5609), 1, - anon_sym_EQ, - ACTIONS(5611), 1, - anon_sym_else, - STATE(2503), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - [77084] = 8, + ACTIONS(5634), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78287] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5613), 1, - anon_sym_SEMI, - STATE(729), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2504), 2, + ACTIONS(5636), 1, + anon_sym_RPAREN, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(3043), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2536), 2, sym_line_comment, sym_block_comment, - [77110] = 8, + [78311] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(5615), 1, + ACTIONS(5640), 1, sym_identifier, - ACTIONS(5617), 1, + ACTIONS(5642), 1, anon_sym_GT, - ACTIONS(5619), 1, + ACTIONS(5644), 1, anon_sym_COMMA, - STATE(3118), 1, + STATE(2886), 1, sym_lifetime, - STATE(2505), 2, - sym_line_comment, - sym_block_comment, - [77136] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2506), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(5621), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77154] = 8, + [78337] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5491), 1, - anon_sym_GT, - ACTIONS(5493), 1, - anon_sym_COMMA, - STATE(2891), 1, - sym_trait_bounds, - STATE(2892), 1, - aux_sym_type_arguments_repeat1, - STATE(2507), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4680), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_type_arguments, + STATE(2402), 1, + sym_parameters, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [77180] = 7, + [78363] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - ACTIONS(5626), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - STATE(3024), 1, + STATE(3052), 1, aux_sym_parameters_repeat1, - ACTIONS(4630), 2, + ACTIONS(4654), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2508), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [77204] = 7, + [78387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(5629), 1, - anon_sym_COMMA, - STATE(3091), 1, - aux_sym_parameters_repeat1, - ACTIONS(4630), 2, + ACTIONS(4654), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2509), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - [77228] = 8, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [78407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5631), 1, - anon_sym_EQ, - STATE(2871), 1, - sym_type_parameters, - STATE(3704), 1, - sym_where_clause, - STATE(2510), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [77254] = 6, + ACTIONS(5648), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78425] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RBRACK, - ACTIONS(3532), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4630), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2511), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4680), 1, + anon_sym_COLON_COLON, + STATE(1335), 1, + sym_parameters, + STATE(2030), 1, + sym_type_arguments, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [77276] = 6, + [78451] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 1, - anon_sym_PLUS, - ACTIONS(5003), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5636), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2512), 2, + ACTIONS(5652), 1, + anon_sym_COLON_COLON, + ACTIONS(5654), 1, + anon_sym_as, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [77298] = 6, + ACTIONS(5650), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, - anon_sym_as, - ACTIONS(5639), 1, - anon_sym_COLON_COLON, - STATE(2513), 2, + ACTIONS(5043), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(5547), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3996), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [77320] = 8, + [78493] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5641), 1, + ACTIONS(5656), 1, anon_sym_SEMI, - STATE(1262), 1, + STATE(519), 1, sym_block, - STATE(3743), 1, + STATE(3774), 1, sym_label, - STATE(2514), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [77346] = 8, + [78519] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5643), 1, - anon_sym_RPAREN, - ACTIONS(5645), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(5649), 1, + ACTIONS(5540), 1, + anon_sym_GT, + ACTIONS(5542), 1, anon_sym_COMMA, - STATE(2946), 1, - aux_sym_slice_pattern_repeat1, - STATE(2515), 2, + STATE(3075), 1, + sym_trait_bounds, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [77372] = 6, + [78545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3532), 1, - anon_sym_PLUS, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5633), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2516), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [77394] = 8, + ACTIONS(3390), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [78563] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5140), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5651), 1, + ACTIONS(5658), 1, anon_sym_SEMI, - STATE(604), 1, + STATE(529), 1, sym_block, - STATE(3740), 1, + STATE(3774), 1, sym_label, - STATE(2517), 2, + STATE(2548), 2, sym_line_comment, sym_block_comment, - [77420] = 8, + [78589] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5009), 1, - anon_sym_RPAREN, - ACTIONS(5653), 1, - anon_sym_COLON, - ACTIONS(5655), 1, + ACTIONS(5029), 1, anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_COMMA, - STATE(2896), 1, - aux_sym_closure_parameters_repeat1, - STATE(2518), 2, + ACTIONS(5660), 1, + anon_sym_SEMI, + ACTIONS(5662), 1, + anon_sym_COLON, + ACTIONS(5664), 1, + anon_sym_EQ, + ACTIONS(5666), 1, + anon_sym_else, + STATE(2549), 2, sym_line_comment, sym_block_comment, - [77446] = 8, + [78615] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5659), 1, + STATE(2550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5668), 5, anon_sym_SEMI, - STATE(589), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2519), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78633] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [77472] = 8, + ACTIONS(5670), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78651] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_POUND, - ACTIONS(5661), 1, + ACTIONS(5672), 1, sym_identifier, - ACTIONS(5663), 1, + ACTIONS(5674), 1, sym_integer_literal, - STATE(1077), 1, + STATE(1093), 1, aux_sym_enum_variant_list_repeat1, - STATE(1120), 1, + STATE(1254), 1, sym_attribute_item, - STATE(2520), 2, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [77498] = 4, + [78677] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2521), 2, + STATE(2553), 2, sym_line_comment, sym_block_comment, ACTIONS(3570), 5, @@ -179689,22502 +181414,22604 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [77516] = 6, + [78695] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, - anon_sym_RBRACK, - ACTIONS(3862), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(5003), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2522), 2, - sym_line_comment, - sym_block_comment, - [77538] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5140), 1, + ACTIONS(4316), 1, anon_sym_LBRACE, - ACTIONS(5665), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2523), 2, + ACTIONS(5678), 1, + anon_sym_STAR, + STATE(2999), 1, + sym_use_list, + ACTIONS(5676), 2, + sym_identifier, + sym_super, + STATE(2554), 2, sym_line_comment, sym_block_comment, - [77564] = 4, + [78719] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2524), 2, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(5667), 5, + ACTIONS(5680), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77582] = 8, + [78737] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1908), 1, + STATE(1925), 1, sym_block, - STATE(3745), 1, + STATE(3779), 1, sym_label, - STATE(2525), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [77608] = 7, + [78763] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5669), 1, - anon_sym_RPAREN, - ACTIONS(5671), 1, - anon_sym_COMMA, - STATE(3024), 1, - aux_sym_parameters_repeat1, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2526), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5682), 1, + anon_sym_SEMI, + STATE(734), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [77632] = 4, + [78789] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2527), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5684), 1, + anon_sym_SEMI, + STATE(624), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77650] = 4, + [78815] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2528), 2, + STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(5507), 5, + ACTIONS(5444), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - [77668] = 4, + [78833] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2529), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5673), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(5686), 1, anon_sym_COMMA, - anon_sym_where, - [77686] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5675), 1, - anon_sym_SEMI, - STATE(1290), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2530), 2, - sym_line_comment, - sym_block_comment, - [77712] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5284), 1, + STATE(3113), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, anon_sym_COLON, - ACTIONS(5310), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2531), 2, + anon_sym_PIPE, + STATE(2560), 2, sym_line_comment, sym_block_comment, - [77736] = 8, + [78857] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5677), 1, - anon_sym_SEMI, - STATE(769), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2532), 2, + STATE(2561), 2, sym_line_comment, sym_block_comment, - [77762] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5679), 1, + ACTIONS(5688), 5, anon_sym_SEMI, - STATE(505), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2533), 2, - sym_line_comment, - sym_block_comment, - [77788] = 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78875] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2534), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3770), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(5619), 1, + anon_sym_as, + ACTIONS(5690), 1, anon_sym_COLON_COLON, - anon_sym_if, - [77806] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2535), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(5681), 5, + ACTIONS(5615), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [77824] = 4, + [78897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2536), 2, + STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(5683), 5, + ACTIONS(5692), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77842] = 8, + [78915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(3984), 2, anon_sym_LPAREN, - ACTIONS(4656), 1, anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2429), 1, - sym_parameters, - STATE(2537), 2, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [77868] = 7, + ACTIONS(4853), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78935] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5338), 1, - anon_sym_STAR, - STATE(3131), 1, - sym_use_list, - ACTIONS(5336), 2, - sym_identifier, - sym_super, - STATE(2538), 2, - sym_line_comment, - sym_block_comment, - [77892] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(5685), 1, + ACTIONS(5694), 1, anon_sym_SEMI, - ACTIONS(5687), 1, - anon_sym_COLON, - ACTIONS(5689), 1, - anon_sym_EQ, - ACTIONS(5691), 1, - anon_sym_else, - STATE(2539), 2, + STATE(699), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [77918] = 4, + [78961] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2540), 2, + ACTIONS(5696), 1, + anon_sym_RPAREN, + ACTIONS(5698), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(5693), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77936] = 8, + [78985] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1775), 1, + STATE(1716), 1, sym_block, - STATE(3745), 1, + STATE(3779), 1, sym_label, - STATE(2541), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - [77962] = 7, + [79011] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(5148), 1, + ACTIONS(4807), 1, + anon_sym_EQ, + ACTIONS(5164), 1, anon_sym_COLON, - STATE(3209), 1, + STATE(3144), 1, sym_trait_bounds, - ACTIONS(5591), 2, + ACTIONS(4809), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2542), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [77986] = 4, + [79035] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2543), 2, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5700), 1, + anon_sym_EQ, + STATE(3182), 1, + sym_type_parameters, + STATE(3793), 1, + sym_where_clause, + STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(5695), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78004] = 8, + [79061] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5140), 1, + ACTIONS(5170), 1, anon_sym_LBRACE, - ACTIONS(5697), 1, + ACTIONS(5702), 1, anon_sym_SEMI, - STATE(608), 1, + STATE(1157), 1, sym_block, - STATE(3740), 1, + STATE(3777), 1, sym_label, - STATE(2544), 2, + STATE(2570), 2, sym_line_comment, sym_block_comment, - [78030] = 8, + [79087] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, + ACTIONS(5704), 1, anon_sym_SEMI, - STATE(1349), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2545), 2, - sym_line_comment, - sym_block_comment, - [78056] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5701), 1, - anon_sym_move, - STATE(1448), 1, + STATE(748), 1, sym_block, - STATE(3680), 1, + STATE(3774), 1, sym_label, - STATE(2546), 2, + STATE(2571), 2, sym_line_comment, sym_block_comment, - [78082] = 7, + [79113] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5703), 1, - anon_sym_COMMA, - STATE(2912), 1, - aux_sym_parameters_repeat1, - ACTIONS(4630), 2, + ACTIONS(3996), 1, + anon_sym_PLUS, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2547), 2, + ACTIONS(5706), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2572), 2, sym_line_comment, sym_block_comment, - [78106] = 7, + [79135] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4786), 1, - anon_sym_EQ, - ACTIONS(5148), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4680), 1, + anon_sym_COLON_COLON, + ACTIONS(4805), 1, anon_sym_COLON, - STATE(3075), 1, + STATE(2030), 1, + sym_type_arguments, + STATE(2551), 1, sym_trait_bounds, - ACTIONS(4788), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2548), 2, + STATE(2573), 2, sym_line_comment, sym_block_comment, - [78130] = 4, + [79161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2549), 2, + STATE(2574), 2, sym_line_comment, sym_block_comment, - ACTIONS(5705), 5, + ACTIONS(5709), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78148] = 8, + [79179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(5707), 1, - anon_sym_SEMI, - ACTIONS(5709), 1, - anon_sym_COLON, - ACTIONS(5711), 1, - anon_sym_EQ, - ACTIONS(5713), 1, - anon_sym_else, - STATE(2550), 2, - sym_line_comment, - sym_block_comment, - [78174] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2551), 2, + STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(5715), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78192] = 4, + ACTIONS(3798), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79197] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2552), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5717), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5049), 1, + anon_sym_RPAREN, + ACTIONS(5711), 1, + anon_sym_COLON, + ACTIONS(5713), 1, + anon_sym_PIPE, + ACTIONS(5715), 1, anon_sym_COMMA, - anon_sym_where, - [78210] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1515), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2553), 2, + STATE(3047), 1, + aux_sym_closure_parameters_repeat1, + STATE(2576), 2, sym_line_comment, sym_block_comment, - [78236] = 7, + [79223] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, + ACTIONS(4666), 1, anon_sym_DOT_DOT, - ACTIONS(5308), 1, + ACTIONS(5416), 1, anon_sym_COLON, - ACTIONS(5310), 1, + ACTIONS(5418), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 2, + ACTIONS(4668), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2554), 2, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [78260] = 5, + [79247] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2555), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5717), 1, + anon_sym_SEMI, + STATE(781), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78280] = 8, + [79273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, + ACTIONS(5164), 1, anon_sym_COLON, - ACTIONS(5423), 1, + STATE(3021), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3402), 1, + sym_trait_bounds, + ACTIONS(5719), 2, anon_sym_GT, - ACTIONS(5425), 1, anon_sym_COMMA, - STATE(3061), 1, - sym_trait_bounds, - STATE(3070), 1, - aux_sym_type_arguments_repeat1, - STATE(2556), 2, + STATE(2579), 2, sym_line_comment, sym_block_comment, - [78306] = 7, + [79297] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5719), 1, - anon_sym_RPAREN, + ACTIONS(3084), 1, + anon_sym_SQUOTE, ACTIONS(5721), 1, + sym_identifier, + ACTIONS(5723), 1, + anon_sym_GT, + ACTIONS(5725), 1, anon_sym_COMMA, - STATE(2867), 1, - aux_sym_parameters_repeat1, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2557), 2, + STATE(2878), 1, + sym_lifetime, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [78330] = 8, + [79323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5723), 1, + ACTIONS(5621), 1, + anon_sym_RBRACK, + ACTIONS(3475), 2, anon_sym_SEMI, - STATE(1378), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2558), 2, + anon_sym_PLUS, + ACTIONS(4654), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2581), 2, sym_line_comment, sym_block_comment, - [78356] = 8, + [79345] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5725), 1, + ACTIONS(5727), 1, anon_sym_SEMI, - STATE(1113), 1, + STATE(524), 1, sym_block, - STATE(3743), 1, + STATE(3774), 1, sym_label, - STATE(2559), 2, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [78382] = 8, + [79371] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_SEMI, - STATE(1139), 1, + STATE(665), 1, sym_block, - STATE(3743), 1, + STATE(3774), 1, sym_label, - STATE(2560), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [78408] = 4, + [79397] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2561), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - ACTIONS(5729), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78426] = 4, + ACTIONS(3624), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79415] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2562), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 5, + ACTIONS(3574), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [78444] = 8, + [79433] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, - anon_sym_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2488), 1, - sym_trait_bounds, - STATE(2563), 2, - sym_line_comment, - sym_block_comment, - [78470] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5533), 1, - anon_sym_GT, - ACTIONS(5535), 1, - anon_sym_COMMA, - STATE(2923), 1, - sym_trait_bounds, - STATE(2925), 1, - aux_sym_type_arguments_repeat1, - STATE(2564), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5731), 1, + anon_sym_SEMI, + STATE(507), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2586), 2, sym_line_comment, sym_block_comment, - [78496] = 4, + [79459] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2565), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 5, + ACTIONS(3582), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [78514] = 8, + anon_sym_EQ, + anon_sym_where, + [79477] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3150), 1, + ACTIONS(5706), 1, + anon_sym_RBRACK, + ACTIONS(3996), 2, + anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1541), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2566), 2, + ACTIONS(5043), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2588), 2, sym_line_comment, sym_block_comment, - [78540] = 4, + [79499] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 5, + ACTIONS(5733), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5735), 1, anon_sym_COLON, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_EQ, - anon_sym_where, - [78558] = 8, + ACTIONS(5741), 1, + anon_sym_else, + STATE(2589), 2, + sym_line_comment, + sym_block_comment, + [79525] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5140), 1, + ACTIONS(5214), 1, anon_sym_LBRACE, - ACTIONS(5731), 1, + ACTIONS(5743), 1, anon_sym_SEMI, - STATE(581), 1, + STATE(755), 1, sym_block, - STATE(3740), 1, + STATE(3774), 1, sym_label, - STATE(2568), 2, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [78584] = 8, + [79551] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5733), 1, - anon_sym_SEMI, - STATE(1148), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2569), 2, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(5745), 1, + anon_sym_COMMA, + STATE(2955), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [78610] = 4, + [79575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2570), 2, + STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78628] = 8, + ACTIONS(5747), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79593] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5735), 1, - anon_sym_move, - STATE(472), 1, + STATE(1732), 1, sym_block, - STATE(3744), 1, + STATE(3779), 1, sym_label, - STATE(2571), 2, + STATE(2593), 2, sym_line_comment, sym_block_comment, - [78654] = 8, + [79619] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5737), 1, - sym_identifier, - ACTIONS(5739), 1, - anon_sym_GT, - ACTIONS(5741), 1, - anon_sym_COMMA, - STATE(3138), 1, - sym_lifetime, - STATE(2572), 2, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [78680] = 8, + ACTIONS(5749), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79637] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1856), 1, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5751), 1, + anon_sym_SEMI, + STATE(1217), 1, sym_block, - STATE(3745), 1, + STATE(3777), 1, sym_label, - STATE(2573), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [78706] = 8, + [79663] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5743), 1, - anon_sym_SEMI, - STATE(1201), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2574), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5753), 1, + anon_sym_RPAREN, + ACTIONS(5755), 1, + anon_sym_COLON, + ACTIONS(5757), 1, + anon_sym_COMMA, + STATE(2969), 1, + aux_sym_slice_pattern_repeat1, + STATE(2596), 2, sym_line_comment, sym_block_comment, - [78732] = 8, + [79689] = 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(5745), 1, - anon_sym_EQ, - STATE(3130), 1, - sym_type_parameters, - STATE(3721), 1, - sym_where_clause, - STATE(2575), 2, + ACTIONS(5759), 1, + anon_sym_RPAREN, + ACTIONS(5761), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2597), 2, sym_line_comment, sym_block_comment, - [78758] = 4, + [79713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2576), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(5747), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78776] = 7, + ACTIONS(3684), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79731] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 1, - anon_sym_LBRACE, - ACTIONS(5751), 1, - anon_sym_STAR, - STATE(3122), 1, - sym_use_list, - ACTIONS(5749), 2, - sym_identifier, - sym_super, - STATE(2577), 2, + ACTIONS(5763), 1, + anon_sym_STAR_SLASH, + ACTIONS(5765), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5767), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5769), 1, + sym__block_comment_content, + STATE(3248), 1, + sym__block_doc_comment_marker, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [78800] = 8, + [79757] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(5753), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5771), 1, anon_sym_SEMI, - ACTIONS(5755), 1, - anon_sym_COLON, - ACTIONS(5757), 1, - anon_sym_EQ, - ACTIONS(5759), 1, - anon_sym_else, - STATE(2578), 2, + STATE(1259), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2600), 2, sym_line_comment, sym_block_comment, - [78826] = 4, + [79783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2579), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(5761), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3782), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79801] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5069), 1, + anon_sym_LT, + ACTIONS(5071), 1, anon_sym_where, - [78844] = 8, + ACTIONS(5773), 1, + anon_sym_EQ, + STATE(3176), 1, + sym_type_parameters, + STATE(3755), 1, + sym_where_clause, + STATE(2602), 2, + sym_line_comment, + sym_block_comment, + [79827] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, - anon_sym_LBRACE, - ACTIONS(5763), 1, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5775), 1, anon_sym_SEMI, - STATE(1217), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2580), 2, + ACTIONS(5777), 1, + anon_sym_COLON, + ACTIONS(5779), 1, + anon_sym_EQ, + ACTIONS(5781), 1, + anon_sym_else, + STATE(2603), 2, sym_line_comment, sym_block_comment, - [78870] = 8, + [79853] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5765), 1, - anon_sym_SEMI, - STATE(1237), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1738), 1, sym_block, - STATE(3743), 1, + STATE(3779), 1, sym_label, - STATE(2581), 2, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [78896] = 4, + [79879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2582), 2, + ACTIONS(4028), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3718), 5, - anon_sym_LPAREN, + ACTIONS(4853), 3, anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COLON_COLON, anon_sym_if, - [78914] = 8, + [79899] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(4656), 1, - anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2080), 1, - sym_parameters, - STATE(2583), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + anon_sym_LBRACE, + ACTIONS(5783), 1, + anon_sym_SEMI, + STATE(561), 1, + sym_block, + STATE(3774), 1, + sym_label, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [78940] = 4, + [79925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2584), 2, + ACTIONS(5619), 1, + anon_sym_as, + ACTIONS(5785), 1, + anon_sym_COLON_COLON, + STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(5767), 5, + ACTIONS(5615), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [78958] = 8, + [79947] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5769), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5787), 1, anon_sym_SEMI, - STATE(537), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2585), 2, + ACTIONS(5789), 1, + anon_sym_COLON, + ACTIONS(5791), 1, + anon_sym_EQ, + ACTIONS(5793), 1, + anon_sym_else, + STATE(2608), 2, sym_line_comment, sym_block_comment, - [78984] = 8, + [79973] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1532), 1, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5795), 1, + anon_sym_SEMI, + STATE(1297), 1, sym_block, - STATE(3680), 1, + STATE(3777), 1, sym_label, - STATE(2586), 2, + STATE(2609), 2, sym_line_comment, sym_block_comment, - [79010] = 7, + [79999] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3588), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2587), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(4680), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_type_arguments, + STATE(2101), 1, + sym_parameters, + STATE(2610), 2, sym_line_comment, sym_block_comment, - [79033] = 7, + [80025] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5771), 1, - anon_sym_SEMI, - STATE(3592), 1, - sym_where_clause, - STATE(2588), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3376), 1, + sym_trait_bounds, + ACTIONS(5797), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [79056] = 7, + [80049] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(5773), 1, - anon_sym_SEMI, - ACTIONS(5775), 1, - anon_sym_EQ, - ACTIONS(5777), 1, - anon_sym_else, - STATE(2589), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3402), 1, + sym_trait_bounds, + ACTIONS(5719), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [79079] = 5, + [80073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5779), 1, - anon_sym_COLON_COLON, - STATE(2590), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79098] = 7, + ACTIONS(5799), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80091] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5781), 1, + STATE(2614), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5801), 5, anon_sym_SEMI, - STATE(3602), 1, - sym_where_clause, - STATE(2591), 2, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80109] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5164), 1, + anon_sym_COLON, + ACTIONS(5451), 1, + anon_sym_GT, + ACTIONS(5453), 1, + anon_sym_COMMA, + STATE(2912), 1, + sym_trait_bounds, + STATE(2913), 1, + aux_sym_type_arguments_repeat1, + STATE(2615), 2, sym_line_comment, sym_block_comment, - [79121] = 7, + [80135] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1144), 1, - sym_declaration_list, - STATE(3346), 1, - sym_where_clause, - STATE(2592), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(5805), 1, + anon_sym_for, + STATE(2030), 1, + sym_type_arguments, + STATE(2616), 2, sym_line_comment, sym_block_comment, - [79144] = 7, + [80158] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5783), 1, - anon_sym_SEMI, - STATE(3513), 1, - sym_where_clause, - STATE(2593), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3591), 1, + sym_type_arguments, + STATE(2617), 2, sym_line_comment, sym_block_comment, - [79167] = 7, + [80181] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_declaration_list, - STATE(3348), 1, - sym_where_clause, - STATE(2594), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(482), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2618), 2, sym_line_comment, sym_block_comment, - [79190] = 7, + [80204] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5785), 1, - anon_sym_SEMI, - STATE(3461), 1, - sym_where_clause, - STATE(2595), 2, + ACTIONS(5079), 1, + anon_sym_move, + ACTIONS(5809), 1, + anon_sym_async, + STATE(233), 1, + sym_closure_parameters, + STATE(2619), 2, sym_line_comment, sym_block_comment, - [79213] = 7, + [80227] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5411), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(1193), 1, - sym_enum_variant_list, - STATE(3355), 1, + STATE(660), 1, + sym_declaration_list, + STATE(3284), 1, sym_where_clause, - STATE(2596), 2, + STATE(2620), 2, sym_line_comment, sym_block_comment, - [79236] = 7, + [80250] = 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(1214), 1, - sym_field_declaration_list, - STATE(3358), 1, - sym_where_clause, - STATE(2597), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5811), 1, + sym_identifier, + STATE(1620), 1, + sym_type_arguments, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [79259] = 7, + [80273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2310), 1, - sym_parameters, - STATE(3239), 1, - sym_type_parameters, - STATE(2598), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5813), 1, + anon_sym_SEMI, + STATE(3753), 1, + sym_where_clause, + STATE(2622), 2, sym_line_comment, sym_block_comment, - [79282] = 7, + [80296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5787), 1, - sym_identifier, - ACTIONS(5789), 1, - sym_super, - STATE(3600), 1, - sym_type_arguments, - STATE(2599), 2, + ACTIONS(5815), 1, + anon_sym_LPAREN, + ACTIONS(5817), 1, + anon_sym_LBRACK, + ACTIONS(5819), 1, + anon_sym_LBRACE, + STATE(1080), 1, + sym_delim_token_tree, + STATE(2623), 2, sym_line_comment, sym_block_comment, - [79305] = 7, + [80319] = 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(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1497), 1, + STATE(1822), 1, sym_block, - STATE(3680), 1, + STATE(3779), 1, sym_label, - STATE(2600), 2, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [79328] = 7, + [80342] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5791), 1, - anon_sym_RPAREN, - ACTIONS(5793), 1, - anon_sym_COMMA, - STATE(3113), 1, - aux_sym_tuple_type_repeat1, - STATE(2601), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1633), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2625), 2, sym_line_comment, sym_block_comment, - [79351] = 7, + [80365] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(778), 1, - sym_declaration_list, - STATE(3193), 1, - sym_where_clause, - STATE(2602), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_RPAREN, + ACTIONS(5823), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_slice_pattern_repeat1, + STATE(2626), 2, sym_line_comment, sym_block_comment, - [79374] = 7, + [80388] = 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(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3570), 1, + STATE(1824), 1, sym_block, - STATE(3680), 1, + STATE(3779), 1, sym_label, - STATE(2603), 2, - sym_line_comment, - sym_block_comment, - [79397] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5795), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2604), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(5797), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79416] = 6, + [80411] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5799), 1, + ACTIONS(5825), 1, anon_sym_DQUOTE, - STATE(2760), 1, + STATE(2635), 1, aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, - STATE(2605), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [79437] = 4, + [80432] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2606), 2, + ACTIONS(5815), 1, + anon_sym_LPAREN, + ACTIONS(5817), 1, + anon_sym_LBRACK, + ACTIONS(5819), 1, + anon_sym_LBRACE, + STATE(1073), 1, + sym_delim_token_tree, + STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(947), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [79454] = 7, + [80455] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5629), 1, - anon_sym_COMMA, - STATE(3091), 1, - aux_sym_parameters_repeat1, - STATE(2607), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(487), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2630), 2, sym_line_comment, sym_block_comment, - [79477] = 7, + [80478] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5829), 1, sym_identifier, - ACTIONS(5805), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2608), 2, + ACTIONS(5831), 1, + sym_super, + STATE(2125), 1, + sym_type_arguments, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [79500] = 7, + [80501] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5829), 1, sym_identifier, - ACTIONS(5807), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2609), 2, + ACTIONS(5831), 1, + sym_super, + STATE(2128), 1, + sym_type_arguments, + STATE(2632), 2, sym_line_comment, sym_block_comment, - [79523] = 7, + [80524] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - ACTIONS(5811), 1, - anon_sym_for, - STATE(2012), 1, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3553), 1, sym_type_arguments, - STATE(2610), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [79546] = 7, + [80547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5833), 1, sym_identifier, - ACTIONS(5813), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2611), 2, + STATE(3591), 1, + sym_type_arguments, + STATE(2634), 2, sym_line_comment, sym_block_comment, - [79569] = 7, + [80570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5815), 1, - anon_sym_SEMI, - ACTIONS(5817), 1, - anon_sym_EQ, - ACTIONS(5819), 1, - anon_sym_else, - STATE(2612), 2, + ACTIONS(5835), 1, + anon_sym_DQUOTE, + ACTIONS(5837), 2, + sym_string_content, + sym_escape_sequence, + STATE(2635), 3, sym_line_comment, sym_block_comment, - [79592] = 7, + aux_sym_string_literal_repeat1, + [80589] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5840), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1451), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2613), 2, + ACTIONS(5842), 1, + anon_sym_for, + ACTIONS(5844), 1, + anon_sym_loop, + ACTIONS(5846), 1, + anon_sym_while, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [79615] = 7, + [80612] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5803), 1, - sym_identifier, - ACTIONS(5821), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2614), 2, + STATE(1841), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [79638] = 7, + [80635] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5823), 1, - anon_sym_SEMI, - STATE(3590), 1, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_enum_variant_list, + STATE(3297), 1, sym_where_clause, - STATE(2615), 2, + STATE(2638), 2, sym_line_comment, sym_block_comment, - [79661] = 7, + [80658] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5825), 1, - anon_sym_SEMI, - STATE(3591), 1, - sym_where_clause, - STATE(2616), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(492), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [79684] = 7, + [80681] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1265), 1, - sym_declaration_list, - STATE(3397), 1, + ACTIONS(5848), 1, + anon_sym_SEMI, + STATE(3566), 1, sym_where_clause, - STATE(2617), 2, + STATE(2640), 2, sym_line_comment, sym_block_comment, - [79707] = 7, + [80704] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1453), 1, + STATE(424), 1, sym_block, - STATE(3680), 1, + STATE(3621), 1, sym_label, - STATE(2618), 2, + STATE(2641), 2, sym_line_comment, sym_block_comment, - [79730] = 6, + [80727] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, + ACTIONS(5850), 1, anon_sym_DQUOTE, - STATE(2659), 1, + STATE(2720), 1, aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, - STATE(2619), 2, + STATE(2642), 2, sym_line_comment, sym_block_comment, - [79751] = 7, + [80748] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5829), 1, - anon_sym_SEMI, - STATE(3621), 1, - sym_where_clause, - STATE(2620), 2, + ACTIONS(5852), 1, + anon_sym_async, + ACTIONS(5854), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [79774] = 7, + [80771] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + ACTIONS(5170), 1, anon_sym_LBRACE, - STATE(1324), 1, - sym_declaration_list, - STATE(3401), 1, - sym_where_clause, - STATE(2621), 2, + STATE(3081), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2644), 2, sym_line_comment, sym_block_comment, - [79797] = 7, + [80794] = 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(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1449), 1, + STATE(1848), 1, sym_block, - STATE(3680), 1, + STATE(3779), 1, sym_label, - STATE(2622), 2, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [79820] = 5, + [80817] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5831), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2623), 2, + ACTIONS(5856), 1, + anon_sym_async, + ACTIONS(5858), 1, + anon_sym_move, + STATE(215), 1, + sym_closure_parameters, + STATE(2646), 2, sym_line_comment, sym_block_comment, - [79839] = 7, + [80840] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(2191), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2624), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [79862] = 7, + [80861] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2389), 1, - sym_parameters, - STATE(2625), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5860), 1, + anon_sym_SEMI, + STATE(3743), 1, + sym_where_clause, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [79885] = 7, + [80884] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5787), 1, - sym_identifier, - ACTIONS(5789), 1, - sym_super, - STATE(3774), 1, - sym_type_arguments, - STATE(2626), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + STATE(2649), 2, sym_line_comment, sym_block_comment, - [79908] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5862), 3, anon_sym_RPAREN, - ACTIONS(5835), 1, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3125), 1, - aux_sym_slice_pattern_repeat1, - STATE(2627), 2, - sym_line_comment, - sym_block_comment, - [79931] = 7, + [80903] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(487), 1, - sym_block, - STATE(3744), 1, - sym_label, - STATE(2628), 2, + ACTIONS(5864), 1, + anon_sym_DQUOTE, + STATE(2658), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [79954] = 7, + [80924] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5837), 1, - anon_sym_SEMI, - STATE(3477), 1, + STATE(1407), 1, + sym_declaration_list, + STATE(3207), 1, sym_where_clause, - STATE(2629), 2, - sym_line_comment, - sym_block_comment, - [79977] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - STATE(2630), 2, + STATE(2651), 2, sym_line_comment, sym_block_comment, - ACTIONS(5839), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [79996] = 7, + [80947] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5803), 1, - sym_identifier, - ACTIONS(5841), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2631), 2, + STATE(1853), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2652), 2, sym_line_comment, sym_block_comment, - [80019] = 7, + [80970] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, - sym_identifier, - ACTIONS(5843), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2632), 2, + ACTIONS(5866), 1, + anon_sym_async, + ACTIONS(5868), 1, + anon_sym_move, + STATE(220), 1, + sym_closure_parameters, + STATE(2653), 2, sym_line_comment, sym_block_comment, - [80042] = 7, + [80993] = 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(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1452), 1, + STATE(1814), 1, sym_block, - STATE(3680), 1, + STATE(3779), 1, sym_label, - STATE(2633), 2, + STATE(2654), 2, sym_line_comment, sym_block_comment, - [80065] = 5, + [81016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5845), 1, - anon_sym_COMMA, - ACTIONS(5839), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5870), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2634), 3, + ACTIONS(5872), 1, + anon_sym_COMMA, + STATE(3185), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2655), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [80084] = 4, + [81039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2635), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + STATE(2656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(5874), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [80101] = 6, + [81058] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(5848), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2636), 2, + ACTIONS(5876), 1, + anon_sym_LPAREN, + ACTIONS(5878), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_LBRACE, + STATE(1858), 1, + sym_delim_token_tree, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [80122] = 6, + [81081] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(3209), 1, - sym_trait_bounds, - ACTIONS(5591), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2637), 2, + ACTIONS(5882), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2658), 2, + sym_line_comment, + sym_block_comment, + [81102] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5876), 1, + anon_sym_LPAREN, + ACTIONS(5878), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_LBRACE, + STATE(1860), 1, + sym_delim_token_tree, + STATE(2659), 2, sym_line_comment, sym_block_comment, - [80143] = 7, + [81125] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5850), 1, - anon_sym_SEMI, - STATE(3684), 1, - sym_where_clause, - STATE(2638), 2, + STATE(2660), 2, sym_line_comment, sym_block_comment, - [80166] = 7, + ACTIONS(5884), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81144] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5852), 1, - anon_sym_SEMI, - STATE(3632), 1, - sym_where_clause, - STATE(2639), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5886), 1, + sym_identifier, + STATE(2125), 1, + sym_type_arguments, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [80189] = 7, + [81167] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(3584), 1, - anon_sym_COLON_COLON, - ACTIONS(5001), 1, - anon_sym_BANG, - STATE(1203), 1, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5886), 1, + sym_identifier, + STATE(2128), 1, sym_type_arguments, - STATE(2640), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [80212] = 7, + [81190] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(716), 1, - sym_field_declaration_list, - STATE(3285), 1, - sym_where_clause, - STATE(2641), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2663), 2, + sym_line_comment, + sym_block_comment, + [81213] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3591), 1, + sym_type_arguments, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [80235] = 7, + [81236] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(408), 1, + STATE(418), 1, sym_block, - STATE(3463), 1, + STATE(3621), 1, sym_label, - STATE(2642), 2, + STATE(2665), 2, sym_line_comment, sym_block_comment, - [80258] = 7, + [81259] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5854), 1, - anon_sym_SEMI, - STATE(3700), 1, + STATE(1413), 1, + sym_field_declaration_list, + STATE(3226), 1, sym_where_clause, - STATE(2643), 2, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [80281] = 7, + [81282] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5856), 1, - anon_sym_SEMI, - STATE(3702), 1, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_declaration_list, + STATE(3374), 1, sym_where_clause, - STATE(2644), 2, + STATE(2667), 2, sym_line_comment, sym_block_comment, - [80304] = 7, + [81305] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_declaration_list, - STATE(3426), 1, + ACTIONS(5888), 1, + anon_sym_SEMI, + STATE(3572), 1, sym_where_clause, - STATE(2645), 2, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [80327] = 7, + [81328] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1460), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2646), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3591), 1, + sym_type_arguments, + ACTIONS(5831), 2, + sym_identifier, + sym_super, + STATE(2669), 2, sym_line_comment, sym_block_comment, - [80350] = 4, + [81349] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2647), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5759), 1, + anon_sym_RPAREN, + ACTIONS(5761), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(5858), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80367] = 5, + [81372] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5860), 1, - anon_sym_DQUOTE, - ACTIONS(5862), 2, - sym_string_content, - sym_escape_sequence, - STATE(2648), 3, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_RBRACK, + ACTIONS(5892), 1, + anon_sym_COMMA, + STATE(3186), 1, + aux_sym_slice_pattern_repeat1, + STATE(2671), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [80386] = 7, + [81395] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5314), 1, - anon_sym_LBRACK, - ACTIONS(5318), 1, - anon_sym_LBRACE, - STATE(1461), 1, - sym_delim_token_tree, - STATE(2649), 2, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2318), 1, + sym_parameters, + STATE(3409), 1, + sym_type_parameters, + STATE(2672), 2, sym_line_comment, sym_block_comment, - [80409] = 7, + [81418] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1462), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2650), 2, + ACTIONS(5894), 1, + anon_sym_DQUOTE, + STATE(2676), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2673), 2, sym_line_comment, sym_block_comment, - [80432] = 7, + [81439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1242), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2651), 2, + ACTIONS(5896), 1, + anon_sym_COLON, + STATE(2674), 2, sym_line_comment, sym_block_comment, - [80455] = 7, + ACTIONS(5029), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81458] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2265), 1, - sym_parameters, - STATE(3310), 1, - sym_type_parameters, - STATE(2652), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5898), 1, + sym_identifier, + STATE(2125), 1, + sym_type_arguments, + STATE(2675), 2, sym_line_comment, sym_block_comment, - [80478] = 5, + [81481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - STATE(2653), 2, + ACTIONS(5900), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2676), 2, sym_line_comment, sym_block_comment, - ACTIONS(5865), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [80497] = 7, + [81502] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5867), 1, - anon_sym_SEMI, - STATE(3717), 1, - sym_where_clause, - STATE(2654), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(5902), 1, + anon_sym_for, + STATE(2030), 1, + sym_type_arguments, + STATE(2677), 2, sym_line_comment, sym_block_comment, - [80520] = 5, + [81525] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - STATE(2655), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(5869), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80539] = 7, + [81548] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(2008), 1, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(3591), 1, sym_type_arguments, - STATE(2487), 1, - sym_trait_bounds, - STATE(2656), 2, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [80562] = 7, + [81571] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1465), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2657), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5906), 1, + anon_sym_RPAREN, + ACTIONS(5908), 1, + anon_sym_COMMA, + STATE(3166), 1, + aux_sym_tuple_type_repeat1, + STATE(2680), 2, sym_line_comment, sym_block_comment, - [80585] = 7, + [81594] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LPAREN, - ACTIONS(5873), 1, - anon_sym_LBRACK, - ACTIONS(5875), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_delim_token_tree, - STATE(2658), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5910), 1, + anon_sym_RPAREN, + ACTIONS(5912), 1, + anon_sym_COMMA, + STATE(3025), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2681), 2, sym_line_comment, sym_block_comment, - [80608] = 6, + [81617] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5877), 1, - anon_sym_DQUOTE, - STATE(2648), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2659), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(5916), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2682), 2, + sym_line_comment, + sym_block_comment, + [81640] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + ACTIONS(5015), 1, + anon_sym_BANG, + STATE(1659), 1, + sym_type_arguments, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [80629] = 7, + [81663] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(471), 1, + STATE(3530), 1, sym_block, - STATE(3744), 1, + STATE(3714), 1, sym_label, - STATE(2660), 2, + STATE(2684), 2, sym_line_comment, sym_block_comment, - [80652] = 7, + [81686] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(473), 1, + STATE(1547), 1, sym_block, - STATE(3744), 1, + STATE(3714), 1, sym_label, - STATE(2661), 2, + STATE(2685), 2, sym_line_comment, sym_block_comment, - [80675] = 6, + [81709] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - anon_sym_DQUOTE, - STATE(2676), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2662), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2031), 1, + sym_type_arguments, + STATE(2501), 1, + sym_parameters, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [80696] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81732] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(419), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(2663), 2, + ACTIONS(5711), 1, + anon_sym_COLON, + ACTIONS(5713), 1, + anon_sym_PIPE, + ACTIONS(5715), 1, + anon_sym_COMMA, + STATE(3047), 1, + aux_sym_closure_parameters_repeat1, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [80719] = 7, + [81755] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - ACTIONS(5160), 1, - anon_sym_LBRACE, - STATE(2972), 1, - sym_block, - STATE(3743), 1, - sym_label, - STATE(2664), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5918), 1, + sym_identifier, + STATE(2125), 1, + sym_type_arguments, + STATE(2688), 2, sym_line_comment, sym_block_comment, - [80742] = 7, + [81778] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1797), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2665), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5807), 1, + sym_identifier, + ACTIONS(5831), 1, + sym_super, + STATE(3591), 1, + sym_type_arguments, + STATE(2689), 2, sym_line_comment, sym_block_comment, - [80765] = 7, + [81801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - anon_sym_LPAREN, - ACTIONS(5314), 1, - anon_sym_LBRACK, - ACTIONS(5318), 1, - anon_sym_LBRACE, - STATE(1466), 1, - sym_delim_token_tree, - STATE(2666), 2, + ACTIONS(5920), 1, + anon_sym_COLON_COLON, + STATE(2690), 2, sym_line_comment, sym_block_comment, - [80788] = 7, + ACTIONS(4929), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81820] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4971), 1, - anon_sym_BANG, - STATE(1666), 1, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(3553), 1, sym_type_arguments, - STATE(2667), 2, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [80811] = 7, + [81843] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5336), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(5881), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(1640), 1, + STATE(3591), 1, sym_type_arguments, - STATE(2668), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - [80834] = 4, + [81866] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4414), 4, + ACTIONS(343), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, + ACTIONS(3448), 1, anon_sym_SQUOTE, - [80851] = 7, + STATE(1470), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2693), 2, + sym_line_comment, + sym_block_comment, + [81889] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(470), 1, - sym_block, - STATE(3744), 1, + STATE(3714), 1, sym_label, - STATE(2670), 2, + STATE(3738), 1, + sym_block, + STATE(2694), 2, sym_line_comment, sym_block_comment, - [80874] = 7, + [81912] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5883), 1, - anon_sym_LPAREN, - ACTIONS(5885), 1, - anon_sym_LBRACK, - ACTIONS(5887), 1, - anon_sym_LBRACE, - STATE(2015), 1, - sym_delim_token_tree, - STATE(2671), 2, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5686), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_parameters_repeat1, + STATE(2695), 2, sym_line_comment, sym_block_comment, - [80897] = 7, + [81935] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(5922), 1, + anon_sym_LPAREN, + ACTIONS(5924), 1, + anon_sym_LBRACK, + ACTIONS(5926), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(481), 1, - sym_block, - STATE(3744), 1, - sym_label, - STATE(2672), 2, + STATE(2043), 1, + sym_delim_token_tree, + STATE(2696), 2, sym_line_comment, sym_block_comment, - [80920] = 7, + [81958] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(457), 1, - sym_block, - STATE(3744), 1, - sym_label, - STATE(2673), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(5928), 1, + anon_sym_for, + STATE(2030), 1, + sym_type_arguments, + STATE(2697), 2, sym_line_comment, sym_block_comment, - [80943] = 7, + [81981] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(764), 1, + STATE(591), 1, sym_declaration_list, - STATE(3406), 1, + STATE(3437), 1, sym_where_clause, - STATE(2674), 2, + STATE(2698), 2, sym_line_comment, sym_block_comment, - [80966] = 7, + [82004] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(490), 1, + STATE(290), 1, sym_block, - STATE(3744), 1, + STATE(3621), 1, sym_label, - STATE(2675), 2, + STATE(2699), 2, sym_line_comment, sym_block_comment, - [80989] = 6, + [82027] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5889), 1, - anon_sym_DQUOTE, - STATE(2648), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2676), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5930), 2, + sym_identifier, + sym_super, + STATE(2700), 2, sym_line_comment, sym_block_comment, - [81010] = 7, + [82048] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5883), 1, - anon_sym_LPAREN, - ACTIONS(5885), 1, - anon_sym_LBRACK, - ACTIONS(5887), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3591), 1, + sym_type_arguments, + ACTIONS(5930), 2, + sym_identifier, + sym_super, + STATE(2701), 2, + sym_line_comment, + sym_block_comment, + [82069] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1383), 1, anon_sym_LBRACE, - STATE(2027), 1, - sym_delim_token_tree, - STATE(2677), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(488), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [81033] = 7, + [82092] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_LT2, - ACTIONS(5891), 1, - sym_identifier, - ACTIONS(5893), 1, - sym_super, - STATE(1610), 1, - sym_type_arguments, - STATE(2678), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(463), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [81056] = 7, + [82115] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_LT2, - ACTIONS(5891), 1, - sym_identifier, - ACTIONS(5893), 1, - sym_super, - STATE(1612), 1, - sym_type_arguments, - STATE(2679), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5350), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [81079] = 7, + [82136] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5895), 1, - sym_identifier, - ACTIONS(5897), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5899), 1, + ACTIONS(5807), 1, + sym_identifier, + ACTIONS(5831), 1, sym_super, - STATE(2497), 1, + STATE(3553), 1, sym_type_arguments, - STATE(2680), 2, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [81102] = 7, + [82159] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5895), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LT2, - ACTIONS(5899), 1, - sym_super, - STATE(2499), 1, - sym_type_arguments, - STATE(2681), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5932), 1, + anon_sym_SEMI, + STATE(3571), 1, + sym_where_clause, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [81125] = 7, + [82182] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5901), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5934), 1, anon_sym_RPAREN, - ACTIONS(5903), 1, + ACTIONS(5936), 1, anon_sym_COMMA, - STATE(3067), 1, - aux_sym_tuple_type_repeat1, - STATE(2682), 2, + STATE(2914), 1, + aux_sym_slice_pattern_repeat1, + STATE(2707), 2, sym_line_comment, sym_block_comment, - [81148] = 5, + [82205] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - STATE(2683), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5938), 1, + anon_sym_RPAREN, + ACTIONS(5940), 1, + anon_sym_COMMA, + STATE(2916), 1, + aux_sym_slice_pattern_repeat1, + STATE(2708), 2, sym_line_comment, sym_block_comment, - ACTIONS(5905), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81167] = 7, + [82228] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5881), 1, - sym_identifier, - STATE(1624), 1, - sym_type_arguments, - STATE(2684), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2291), 1, + sym_parameters, + STATE(3356), 1, + sym_type_parameters, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [81190] = 5, + [82251] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - STATE(2685), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5942), 1, + anon_sym_SEMI, + STATE(3658), 1, + sym_where_clause, + STATE(2710), 2, sym_line_comment, sym_block_comment, - ACTIONS(5907), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81209] = 7, + [82274] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5909), 1, - sym_identifier, - STATE(3600), 1, - sym_type_arguments, - STATE(2686), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_declaration_list, + STATE(3258), 1, + sym_where_clause, + STATE(2711), 2, sym_line_comment, sym_block_comment, - [81232] = 7, + [82297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_LT2, - STATE(1687), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, - STATE(2687), 2, + ACTIONS(5944), 1, + anon_sym_in, + STATE(2712), 2, sym_line_comment, sym_block_comment, - [81255] = 7, + ACTIONS(5946), 3, + sym_self, + sym_super, + sym_crate, + [82316] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5909), 1, - sym_identifier, - STATE(3774), 1, - sym_type_arguments, - STATE(2688), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3575), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2713), 2, sym_line_comment, sym_block_comment, - [81278] = 6, + [82339] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(3459), 1, - sym_trait_bounds, - ACTIONS(5595), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2689), 2, + ACTIONS(5948), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2714), 2, sym_line_comment, sym_block_comment, - [81299] = 7, + [82360] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(5950), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3744), 1, - sym_label, - STATE(2690), 2, + ACTIONS(5952), 1, + anon_sym_for, + ACTIONS(5954), 1, + anon_sym_loop, + ACTIONS(5956), 1, + anon_sym_while, + STATE(2715), 2, sym_line_comment, sym_block_comment, - [81322] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82383] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(400), 1, + STATE(478), 1, sym_block, - STATE(3463), 1, + STATE(3778), 1, sym_label, - STATE(2691), 2, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [81345] = 7, + [82406] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(5911), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5696), 1, anon_sym_RPAREN, - ACTIONS(5913), 1, + ACTIONS(5698), 1, anon_sym_COMMA, - STATE(3082), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2692), 2, + STATE(2919), 1, + aux_sym_parameters_repeat1, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [81368] = 7, + [82429] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5597), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3119), 1, - aux_sym_parameters_repeat1, - STATE(2693), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5958), 1, + anon_sym_SEMI, + STATE(3552), 1, + sym_where_clause, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [81391] = 7, + [82452] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2270), 1, - sym_parameters, - STATE(3306), 1, - sym_type_parameters, - STATE(2694), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5960), 1, + anon_sym_SEMI, + ACTIONS(5962), 1, + anon_sym_EQ, + ACTIONS(5964), 1, + anon_sym_else, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [81414] = 7, + [82475] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(5915), 1, - anon_sym_RBRACK, - ACTIONS(5917), 1, - anon_sym_COMMA, - STATE(3084), 1, - aux_sym_slice_pattern_repeat1, - STATE(2695), 2, + ACTIONS(5966), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2720), 2, sym_line_comment, sym_block_comment, - [81437] = 7, + [82496] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(5922), 1, + anon_sym_LPAREN, + ACTIONS(5924), 1, + anon_sym_LBRACK, + ACTIONS(5926), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(491), 1, - sym_block, - STATE(3744), 1, - sym_label, - STATE(2696), 2, + STATE(2035), 1, + sym_delim_token_tree, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [81460] = 7, + [82519] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5603), 1, - anon_sym_COMMA, - STATE(3016), 1, - aux_sym_parameters_repeat1, - STATE(2697), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_declaration_list, + STATE(3489), 1, + sym_where_clause, + STATE(2722), 2, sym_line_comment, sym_block_comment, - [81483] = 7, + [82542] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(5968), 1, sym_identifier, - ACTIONS(5919), 1, + ACTIONS(5970), 1, + sym_super, + STATE(1618), 1, + sym_type_arguments, + STATE(2723), 2, + sym_line_comment, + sym_block_comment, + [82565] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5972), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2724), 2, + sym_line_comment, + sym_block_comment, + [82586] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3402), 1, + sym_trait_bounds, + ACTIONS(5719), 2, anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2698), 2, + anon_sym_COMMA, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [81506] = 7, + [82607] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, + ACTIONS(4184), 1, + anon_sym_LT2, + ACTIONS(5968), 1, sym_identifier, - ACTIONS(5921), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2699), 2, + ACTIONS(5970), 1, + sym_super, + STATE(1627), 1, + sym_type_arguments, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [81529] = 5, + [82630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5923), 1, + ACTIONS(5974), 1, sym_identifier, - STATE(2700), 2, + STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(5925), 3, + ACTIONS(5976), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - [81548] = 7, + [82649] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, + ACTIONS(5978), 1, + anon_sym_DQUOTE, + STATE(2724), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2728), 2, + sym_line_comment, + sym_block_comment, + [82670] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5930), 1, sym_super, - ACTIONS(5927), 1, + ACTIONS(5980), 1, sym_identifier, - STATE(2102), 1, + ACTIONS(5982), 1, + anon_sym_LT2, + STATE(2605), 1, sym_type_arguments, - STATE(2701), 2, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [81571] = 7, + [82693] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(5930), 1, + sym_super, + ACTIONS(5980), 1, + sym_identifier, + ACTIONS(5982), 1, anon_sym_LT2, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - ACTIONS(5929), 1, - anon_sym_for, - STATE(2012), 1, + STATE(2564), 1, sym_type_arguments, - STATE(2702), 2, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [81594] = 7, + [82716] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5803), 1, - sym_identifier, - ACTIONS(5931), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2703), 2, + STATE(3714), 1, + sym_label, + STATE(3751), 1, + sym_block, + STATE(2731), 2, sym_line_comment, sym_block_comment, - [81617] = 7, + [82739] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, - sym_identifier, - ACTIONS(5933), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2704), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5984), 1, + anon_sym_RPAREN, + ACTIONS(5986), 1, + anon_sym_COMMA, + STATE(3030), 1, + aux_sym_tuple_type_repeat1, + STATE(2732), 2, + sym_line_comment, + sym_block_comment, + [82762] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5988), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [81640] = 5, + ACTIONS(5990), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82781] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5992), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5994), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82800] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, - anon_sym_COMMA, - ACTIONS(4308), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2705), 3, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5996), 1, + sym_identifier, + STATE(1498), 1, + sym_type_arguments, + STATE(2735), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [81659] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82823] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(339), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(2706), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2320), 1, + sym_parameters, + STATE(3386), 1, + sym_type_parameters, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [81682] = 7, + [82846] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1795), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2707), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5998), 1, + anon_sym_SEMI, + ACTIONS(6000), 1, + anon_sym_EQ, + ACTIONS(6002), 1, + anon_sym_else, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [81705] = 7, + [82869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1798), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2708), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - [81728] = 6, + ACTIONS(1005), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [82886] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, - anon_sym_DQUOTE, - STATE(2716), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2709), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5811), 1, + sym_identifier, + STATE(1635), 1, + sym_type_arguments, + STATE(2739), 2, sym_line_comment, sym_block_comment, - [81749] = 7, + [82909] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1387), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(483), 1, - sym_block, - STATE(3744), 1, - sym_label, - STATE(2710), 2, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1177), 1, + sym_declaration_list, + STATE(3214), 1, + sym_where_clause, + STATE(2740), 2, sym_line_comment, sym_block_comment, - [81772] = 7, + [82932] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1802), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2711), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6004), 1, + anon_sym_SEMI, + STATE(3578), 1, + sym_where_clause, + STATE(2741), 2, sym_line_comment, sym_block_comment, - [81795] = 7, + [82955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5940), 1, - anon_sym_LPAREN, - ACTIONS(5942), 1, - anon_sym_LBRACK, - ACTIONS(5944), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym_delim_token_tree, - STATE(2712), 2, + ACTIONS(6006), 1, + anon_sym_COMMA, + ACTIONS(5874), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2742), 3, sym_line_comment, sym_block_comment, - [81818] = 7, + aux_sym_slice_pattern_repeat1, + [82974] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1804), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2713), 2, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1193), 1, + sym_declaration_list, + STATE(3218), 1, + sym_where_clause, + STATE(2743), 2, sym_line_comment, sym_block_comment, - [81841] = 7, + [82997] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - STATE(1621), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2714), 2, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6009), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2744), 2, sym_line_comment, sym_block_comment, - [81864] = 7, + [83020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1808), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2715), 2, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6011), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [81887] = 6, + [83039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5946), 1, - anon_sym_DQUOTE, - STATE(2648), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2716), 2, + STATE(2746), 2, sym_line_comment, sym_block_comment, - [81908] = 7, + ACTIONS(1009), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83056] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5940), 1, - anon_sym_LPAREN, - ACTIONS(5942), 1, - anon_sym_LBRACK, - ACTIONS(5944), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(1074), 1, - sym_delim_token_tree, - STATE(2717), 2, + STATE(1198), 1, + sym_enum_variant_list, + STATE(3227), 1, + sym_where_clause, + STATE(2747), 2, sym_line_comment, sym_block_comment, - [81931] = 7, + [83079] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5948), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2718), 2, + STATE(2748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6013), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83096] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5067), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1204), 1, + sym_field_declaration_list, + STATE(3232), 1, + sym_where_clause, + STATE(2749), 2, sym_line_comment, sym_block_comment, - [81954] = 7, + [83119] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5789), 1, + ACTIONS(5831), 1, sym_super, - ACTIONS(5948), 1, + ACTIONS(5918), 1, sym_identifier, - STATE(2107), 1, + STATE(2128), 1, sym_type_arguments, - STATE(2719), 2, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [81977] = 7, + [83142] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5950), 1, - sym_identifier, - STATE(3600), 1, - sym_type_arguments, - STATE(2720), 2, + ACTIONS(6015), 1, + anon_sym_COLON, + STATE(2751), 2, sym_line_comment, sym_block_comment, - [82000] = 7, + ACTIONS(5029), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [83161] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5950), 1, - sym_identifier, - STATE(3774), 1, - sym_type_arguments, - STATE(2721), 2, + ACTIONS(6017), 1, + anon_sym_COLON_COLON, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [82023] = 7, + ACTIONS(4865), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83180] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5789), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(5927), 1, + ACTIONS(5898), 1, sym_identifier, - STATE(2107), 1, + STATE(3553), 1, sym_type_arguments, - STATE(2722), 2, + STATE(2753), 2, sym_line_comment, sym_block_comment, - [82046] = 7, + [83203] = 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(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1826), 1, + STATE(1544), 1, sym_block, - STATE(3745), 1, + STATE(3714), 1, sym_label, - STATE(2723), 2, + STATE(2754), 2, sym_line_comment, sym_block_comment, - [82069] = 7, + [83226] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(5952), 1, - anon_sym_RPAREN, - ACTIONS(5954), 1, - anon_sym_COMMA, - STATE(3114), 1, - aux_sym_tuple_type_repeat1, - STATE(2724), 2, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [82092] = 5, + ACTIONS(6019), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [83245] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5956), 2, - anon_sym_RPAREN, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6021), 1, + anon_sym_EQ, + ACTIONS(6023), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2725), 2, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [82111] = 7, - ACTIONS(103), 1, + [83266] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(1832), 1, - sym_block, - STATE(3745), 1, - sym_label, - STATE(2726), 2, + ACTIONS(6025), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2757), 2, sym_line_comment, sym_block_comment, - [82134] = 5, + ACTIONS(6027), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83285] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5958), 1, - anon_sym_COLON_COLON, - STATE(2727), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(1712), 1, + sym_parameters, + STATE(2031), 1, + sym_type_arguments, + STATE(2758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4865), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82153] = 5, + [83308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5960), 1, - anon_sym_COLON_COLON, - STATE(2728), 2, + ACTIONS(6029), 1, + anon_sym_COMMA, + ACTIONS(4296), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2759), 3, sym_line_comment, sym_block_comment, - ACTIONS(4869), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82172] = 6, + aux_sym_arguments_repeat1, + [83327] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5962), 1, - anon_sym_DQUOTE, - STATE(2733), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2729), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6032), 1, + anon_sym_SEMI, + STATE(3726), 1, + sym_where_clause, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [82193] = 7, + [83350] = 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(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1837), 1, + STATE(3634), 1, sym_block, - STATE(3745), 1, + STATE(3714), 1, sym_label, - STATE(2730), 2, - sym_line_comment, - sym_block_comment, - [82216] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5964), 1, - anon_sym_LPAREN, - ACTIONS(5966), 1, - anon_sym_LBRACK, - ACTIONS(5968), 1, - anon_sym_LBRACE, - STATE(2647), 1, - sym_token_tree, - STATE(2731), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [82239] = 7, + [83373] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5970), 1, + ACTIONS(6034), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, + ACTIONS(6036), 1, anon_sym_LBRACK, - ACTIONS(5974), 1, + ACTIONS(6038), 1, anon_sym_LBRACE, - STATE(1841), 1, + STATE(402), 1, sym_delim_token_tree, - STATE(2732), 2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [82262] = 6, + [83396] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5976), 1, - anon_sym_DQUOTE, - STATE(2648), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2733), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1469), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [82283] = 7, + [83419] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5970), 1, - anon_sym_LPAREN, - ACTIONS(5972), 1, - anon_sym_LBRACK, - ACTIONS(5974), 1, - anon_sym_LBRACE, - STATE(1844), 1, - sym_delim_token_tree, - STATE(2734), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [82306] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83440] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(403), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(2735), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3591), 1, + sym_type_arguments, + ACTIONS(5306), 2, + sym_identifier, + sym_super, + STATE(2765), 2, sym_line_comment, sym_block_comment, - [82329] = 7, + [83461] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5978), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2736), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_field_declaration_list, + STATE(3285), 1, + sym_where_clause, + STATE(2766), 2, sym_line_comment, sym_block_comment, - [82352] = 7, + [83484] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5978), 1, - sym_identifier, - STATE(2107), 1, - sym_type_arguments, - STATE(2737), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2333), 1, + sym_parameters, + STATE(3401), 1, + sym_type_parameters, + STATE(2767), 2, sym_line_comment, sym_block_comment, - [82375] = 7, + [83507] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5950), 1, - sym_identifier, - STATE(3600), 1, - sym_type_arguments, - STATE(2738), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1471), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2768), 2, sym_line_comment, sym_block_comment, - [82398] = 7, + [83530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5950), 1, - sym_identifier, - STATE(3774), 1, - sym_type_arguments, - STATE(2739), 2, + ACTIONS(4654), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6040), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [82421] = 7, + [83549] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5336), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(5787), 1, + ACTIONS(5898), 1, sym_identifier, - STATE(3600), 1, + STATE(3591), 1, sym_type_arguments, - STATE(2740), 2, - sym_line_comment, - sym_block_comment, - [82444] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5980), 1, - anon_sym_in, - STATE(2741), 2, + STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(5982), 3, - sym_self, - sym_super, - sym_crate, - [82463] = 6, + [83572] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5984), 1, - anon_sym_DQUOTE, - STATE(2743), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2742), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(423), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [82484] = 6, + [83595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5986), 1, + ACTIONS(6042), 1, anon_sym_DQUOTE, - STATE(2648), 1, + STATE(2714), 1, aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, - STATE(2743), 2, + STATE(2772), 2, sym_line_comment, sym_block_comment, - [82505] = 7, - ACTIONS(103), 1, + [83616] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3600), 1, - sym_type_arguments, - STATE(2744), 2, + ACTIONS(6044), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [82528] = 7, + ACTIONS(6046), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83635] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3774), 1, - sym_type_arguments, - STATE(2745), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3556), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2774), 2, sym_line_comment, sym_block_comment, - [82551] = 7, + [83658] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - ACTIONS(5803), 1, - sym_identifier, - ACTIONS(5990), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2746), 2, + STATE(3558), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2775), 2, sym_line_comment, sym_block_comment, - [82574] = 7, + [83681] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5992), 1, - anon_sym_RBRACK, - ACTIONS(5994), 1, + ACTIONS(5753), 1, + anon_sym_RPAREN, + ACTIONS(5757), 1, anon_sym_COMMA, - STATE(2945), 1, + STATE(2969), 1, aux_sym_slice_pattern_repeat1, - STATE(2747), 2, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [82597] = 7, + [83704] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5898), 1, sym_identifier, - ACTIONS(5996), 1, - anon_sym_GT, - STATE(3268), 1, - sym_lifetime, - STATE(2748), 2, + STATE(2128), 1, + sym_type_arguments, + STATE(2777), 2, sym_line_comment, sym_block_comment, - [82620] = 7, + [83727] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_LT2, - STATE(1299), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, - STATE(2749), 2, + ACTIONS(1383), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(494), 1, + sym_block, + STATE(3778), 1, + sym_label, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [82643] = 5, - ACTIONS(3), 1, + [83750] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5998), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2750), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6048), 1, + anon_sym_RPAREN, + ACTIONS(6050), 1, + anon_sym_COMMA, + STATE(2882), 1, + aux_sym_tuple_type_repeat1, + STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(6000), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82662] = 7, + [83773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3774), 1, - sym_type_arguments, - STATE(2751), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_field_declaration_list, + STATE(3340), 1, + sym_where_clause, + STATE(2780), 2, sym_line_comment, sym_block_comment, - [82685] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83796] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(1617), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(397), 1, + STATE(2207), 1, sym_block, - STATE(3463), 1, + STATE(3770), 1, sym_label, - STATE(2752), 2, + STATE(2781), 2, sym_line_comment, sym_block_comment, - [82708] = 5, + [83819] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6002), 1, - anon_sym_COLON_COLON, - STATE(2753), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(2336), 1, + sym_parameters, + STATE(3360), 1, + sym_type_parameters, + STATE(2782), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82727] = 5, + [83842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5779), 1, + ACTIONS(5920), 1, anon_sym_COLON_COLON, - STATE(2754), 2, + STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 3, + ACTIONS(4895), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82746] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3600), 1, - sym_type_arguments, - STATE(2755), 2, - sym_line_comment, - sym_block_comment, - [82769] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3774), 1, - sym_type_arguments, - STATE(2756), 2, - sym_line_comment, - sym_block_comment, - [82792] = 7, + [83861] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3484), 1, + STATE(1465), 1, sym_block, - STATE(3680), 1, + STATE(3714), 1, sym_label, - STATE(2757), 2, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [82815] = 7, + [83884] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6004), 1, - anon_sym_SEMI, - ACTIONS(6006), 1, - anon_sym_EQ, - ACTIONS(6008), 1, - anon_sym_else, - STATE(2758), 2, + ACTIONS(6052), 1, + anon_sym_COLON_COLON, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [82838] = 7, + ACTIONS(4921), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83903] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5471), 1, + ACTIONS(6034), 1, + anon_sym_LPAREN, + ACTIONS(6036), 1, + anon_sym_LBRACK, + ACTIONS(6038), 1, anon_sym_LBRACE, - STATE(612), 1, - sym_enum_variant_list, - STATE(3174), 1, - sym_where_clause, - STATE(2759), 2, + STATE(419), 1, + sym_delim_token_tree, + STATE(2786), 2, sym_line_comment, sym_block_comment, - [82861] = 6, + [83926] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6010), 1, - anon_sym_DQUOTE, - STATE(2648), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5801), 2, - sym_string_content, - sym_escape_sequence, - STATE(2760), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3540), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [82882] = 7, + [83949] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5411), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1306), 1, - sym_enum_variant_list, - STATE(3237), 1, - sym_where_clause, - STATE(2761), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3544), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2788), 2, sym_line_comment, sym_block_comment, - [82905] = 7, + [83972] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LPAREN, - ACTIONS(5873), 1, - anon_sym_LBRACK, - ACTIONS(5875), 1, - anon_sym_LBRACE, - STATE(405), 1, - sym_delim_token_tree, - STATE(2762), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4712), 1, + anon_sym_BANG, + ACTIONS(4757), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + STATE(2789), 2, sym_line_comment, sym_block_comment, - [82928] = 6, + [83995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5286), 1, + ACTIONS(6052), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2763), 2, + STATE(2790), 2, sym_line_comment, sym_block_comment, - [82949] = 7, + ACTIONS(4865), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84014] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(6012), 1, - sym_identifier, - STATE(1433), 1, - sym_type_arguments, - STATE(2764), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6054), 1, + anon_sym_SEMI, + STATE(3613), 1, + sym_where_clause, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [82972] = 7, + [84037] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2301), 1, - sym_parameters, - STATE(3331), 1, - sym_type_parameters, - STATE(2765), 2, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5745), 1, + anon_sym_COMMA, + STATE(2955), 1, + aux_sym_parameters_repeat1, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [82995] = 7, + [84060] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5909), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2766), 2, - sym_line_comment, - sym_block_comment, - [83018] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6014), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2767), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5636), 1, + anon_sym_RPAREN, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(3043), 1, + aux_sym_parameters_repeat1, + STATE(2793), 2, sym_line_comment, sym_block_comment, - ACTIONS(6016), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83037] = 5, + [84083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, + ACTIONS(6056), 1, anon_sym_in, - STATE(2768), 2, + STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(6020), 3, + ACTIONS(6058), 3, sym_self, sym_super, sym_crate, - [83056] = 7, + [84102] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(6024), 1, - anon_sym_for, - ACTIONS(6026), 1, - anon_sym_loop, - ACTIONS(6028), 1, - anon_sym_while, - STATE(2769), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3593), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [83079] = 5, + [84125] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5958), 1, - anon_sym_COLON_COLON, - STATE(2770), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(2031), 1, + sym_type_arguments, + STATE(2550), 1, + sym_trait_bounds, + STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83098] = 5, + [84148] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5960), 1, - anon_sym_COLON_COLON, - STATE(2771), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(410), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83117] = 5, + [84171] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6002), 1, - anon_sym_COLON_COLON, - STATE(2772), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83136] = 6, + [84194] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5310), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2773), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6060), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [83157] = 5, + [84217] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5779), 1, - anon_sym_COLON_COLON, - STATE(2774), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6062), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83176] = 6, + [84240] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6030), 1, - anon_sym_EQ, - ACTIONS(6032), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2775), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + ACTIONS(4712), 1, + anon_sym_BANG, + STATE(1284), 1, + sym_type_arguments, + STATE(2801), 2, sym_line_comment, sym_block_comment, - [83197] = 7, + [84263] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3680), 1, - sym_label, - STATE(3767), 1, - sym_block, - STATE(2776), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6064), 1, + anon_sym_RPAREN, + ACTIONS(6066), 1, + anon_sym_COMMA, + STATE(2977), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [83220] = 7, + [84286] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4184), 1, anon_sym_LT2, - ACTIONS(4887), 1, - anon_sym_for, - ACTIONS(5809), 1, + ACTIONS(4298), 1, anon_sym_COLON_COLON, - STATE(2012), 1, + ACTIONS(4712), 1, + anon_sym_BANG, + STATE(1659), 1, sym_type_arguments, - STATE(2777), 2, - sym_line_comment, - sym_block_comment, - [83243] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1383), 1, - sym_declaration_list, - STATE(3254), 1, - sym_where_clause, - STATE(2778), 2, + STATE(2803), 2, sym_line_comment, sym_block_comment, - [83266] = 7, + [84309] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, + ACTIONS(5069), 1, anon_sym_LT, - STATE(2313), 1, + STATE(2315), 1, sym_parameters, - STATE(3361), 1, + STATE(3381), 1, sym_type_parameters, - STATE(2779), 2, + STATE(2804), 2, sym_line_comment, sym_block_comment, - [83289] = 7, + [84332] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5909), 1, - sym_identifier, - STATE(2107), 1, - sym_type_arguments, - STATE(2780), 2, + ACTIONS(6068), 1, + anon_sym_async, + ACTIONS(6070), 1, + anon_sym_move, + STATE(255), 1, + sym_closure_parameters, + STATE(2805), 2, sym_line_comment, sym_block_comment, - [83312] = 7, + [84355] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6034), 1, - anon_sym_RPAREN, - ACTIONS(6036), 1, - anon_sym_COMMA, - STATE(2902), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2781), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2806), 2, sym_line_comment, sym_block_comment, - [83335] = 7, + [84376] = 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(5071), 1, anon_sym_where, - STATE(1399), 1, - sym_field_declaration_list, - STATE(3260), 1, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(622), 1, + sym_enum_variant_list, + STATE(3294), 1, sym_where_clause, - STATE(2782), 2, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [83358] = 6, + [84399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - STATE(3600), 1, - sym_type_arguments, - ACTIONS(5336), 2, - sym_identifier, - sym_super, - STATE(2783), 2, + ACTIONS(5920), 1, + anon_sym_COLON_COLON, + STATE(2808), 2, sym_line_comment, sym_block_comment, - [83379] = 7, + ACTIONS(4879), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84418] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(546), 1, - sym_declaration_list, - STATE(3216), 1, - sym_where_clause, - STATE(2784), 2, - sym_line_comment, - sym_block_comment, - [83402] = 7, - ACTIONS(19), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(417), 1, + STATE(491), 1, sym_block, - STATE(3463), 1, + STATE(3778), 1, sym_label, - STATE(2785), 2, + STATE(2809), 2, sym_line_comment, sym_block_comment, - [83425] = 7, + [84441] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6072), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3680), 1, - sym_label, - STATE(3760), 1, - sym_block, - STATE(2786), 2, + ACTIONS(6074), 1, + anon_sym_for, + ACTIONS(6076), 1, + anon_sym_loop, + ACTIONS(6078), 1, + anon_sym_while, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [83448] = 7, + [84464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3465), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2787), 2, + ACTIONS(6052), 1, + anon_sym_COLON_COLON, + STATE(2811), 2, sym_line_comment, sym_block_comment, - [83471] = 7, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3500), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2788), 2, + ACTIONS(6080), 1, + anon_sym_COLON_COLON, + STATE(2812), 2, sym_line_comment, sym_block_comment, - [83494] = 6, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - STATE(3600), 1, - sym_type_arguments, - ACTIONS(5789), 2, - sym_identifier, - sym_super, - STATE(2789), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [83515] = 6, + ACTIONS(6082), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84521] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(3774), 1, + ACTIONS(4925), 1, + anon_sym_for, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, sym_type_arguments, - ACTIONS(5789), 2, - sym_identifier, - sym_super, - STATE(2790), 2, + STATE(2814), 2, sym_line_comment, sym_block_comment, - [83536] = 7, + [84544] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2298), 1, - sym_parameters, - STATE(3377), 1, - sym_type_parameters, - STATE(2791), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6084), 1, + anon_sym_SEMI, + ACTIONS(6086), 1, + anon_sym_EQ, + ACTIONS(6088), 1, + anon_sym_else, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [83559] = 7, + [84567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5653), 1, - anon_sym_COLON, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_COMMA, - STATE(2896), 1, - aux_sym_closure_parameters_repeat1, - STATE(2792), 2, + ACTIONS(6080), 1, + anon_sym_COLON_COLON, + STATE(2816), 2, sym_line_comment, sym_block_comment, - [83582] = 7, + ACTIONS(4921), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84586] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(692), 1, - sym_declaration_list, - STATE(3322), 1, - sym_where_clause, - STATE(2793), 2, + ACTIONS(4666), 1, + anon_sym_DOT_DOT, + ACTIONS(5394), 1, + anon_sym_COLON_COLON, + ACTIONS(4668), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2817), 2, sym_line_comment, sym_block_comment, - [83605] = 6, + [84607] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(3774), 1, - sym_type_arguments, - ACTIONS(5336), 2, - sym_identifier, + ACTIONS(5306), 1, sym_super, - STATE(2794), 2, + ACTIONS(5996), 1, + sym_identifier, + STATE(1516), 1, + sym_type_arguments, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [83626] = 5, + [84630] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6038), 1, - anon_sym_COLON, - STATE(2795), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_block, + STATE(3621), 1, + sym_label, + STATE(2819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83645] = 7, + [84653] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6090), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3583), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2796), 2, + ACTIONS(6092), 1, + anon_sym_for, + ACTIONS(6094), 1, + anon_sym_loop, + ACTIONS(6096), 1, + anon_sym_while, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [83668] = 7, + [84676] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3584), 1, - sym_block, - STATE(3680), 1, + STATE(3714), 1, sym_label, - STATE(2797), 2, - sym_line_comment, - sym_block_comment, - [83691] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_LT2, - ACTIONS(5336), 1, - sym_super, - ACTIONS(6012), 1, - sym_identifier, - STATE(1439), 1, - sym_type_arguments, - STATE(2798), 2, + STATE(3798), 1, + sym_block, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [83714] = 7, + [84699] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(1477), 1, + STATE(414), 1, sym_block, - STATE(3680), 1, + STATE(3621), 1, sym_label, - STATE(2799), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - [83737] = 7, + [84722] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6040), 1, + ACTIONS(6098), 1, anon_sym_SEMI, - ACTIONS(6042), 1, + ACTIONS(6100), 1, anon_sym_EQ, - ACTIONS(6044), 1, + ACTIONS(6102), 1, anon_sym_else, - STATE(2800), 2, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [83760] = 7, + [84745] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6046), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6104), 1, anon_sym_RPAREN, - ACTIONS(6048), 1, + ACTIONS(6106), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2801), 2, + STATE(3023), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2824), 2, sym_line_comment, sym_block_comment, - [83783] = 7, + [84768] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(627), 1, - sym_declaration_list, - STATE(3444), 1, + ACTIONS(6108), 1, + anon_sym_SEMI, + STATE(3757), 1, sym_where_clause, - STATE(2802), 2, + STATE(2825), 2, sym_line_comment, sym_block_comment, - [83806] = 7, + [84791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3680), 1, - sym_label, - STATE(3766), 1, - sym_block, - STATE(2803), 2, + ACTIONS(6110), 1, + sym_identifier, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [83829] = 7, + ACTIONS(6112), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [84810] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3674), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2804), 2, + ACTIONS(6017), 1, + anon_sym_COLON_COLON, + STATE(2827), 2, sym_line_comment, sym_block_comment, - [83852] = 7, + ACTIONS(4921), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84829] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2805), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6114), 1, + anon_sym_RBRACK, + ACTIONS(6116), 1, + anon_sym_COMMA, + STATE(3111), 1, + aux_sym_slice_pattern_repeat1, + STATE(2828), 2, + sym_line_comment, + sym_block_comment, + [84852] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4825), 1, + anon_sym_DOT_DOT, + ACTIONS(6118), 1, + anon_sym_COLON_COLON, + ACTIONS(4827), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [83875] = 7, + [84873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5669), 1, - anon_sym_RPAREN, - ACTIONS(5671), 1, - anon_sym_COMMA, - STATE(3024), 1, - aux_sym_parameters_repeat1, - STATE(2806), 2, + ACTIONS(6017), 1, + anon_sym_COLON_COLON, + STATE(2830), 2, sym_line_comment, sym_block_comment, - [83898] = 7, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84892] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(6050), 1, + ACTIONS(6120), 1, anon_sym_SEMI, - STATE(3468), 1, + STATE(3598), 1, sym_where_clause, - STATE(2807), 2, + STATE(2831), 2, sym_line_comment, sym_block_comment, - [83921] = 7, + [84915] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3680), 1, - sym_label, - STATE(3709), 1, - sym_block, - STATE(2808), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6122), 1, + anon_sym_SEMI, + STATE(3599), 1, + sym_where_clause, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [83944] = 7, + [84938] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3531), 1, - sym_block, - STATE(3680), 1, - sym_label, - STATE(2809), 2, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1252), 1, + sym_declaration_list, + STATE(3305), 1, + sym_where_clause, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [83967] = 7, + [84961] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(3680), 1, - sym_label, - STATE(3720), 1, - sym_block, - STATE(2810), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6124), 1, + anon_sym_RPAREN, + ACTIONS(6126), 1, + anon_sym_COMMA, + STATE(3114), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [83990] = 7, + [84984] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1383), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3448), 1, anon_sym_SQUOTE, - STATE(3532), 1, + STATE(493), 1, sym_block, - STATE(3680), 1, + STATE(3778), 1, sym_label, - STATE(2811), 2, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [84013] = 7, + [85007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_LT2, - ACTIONS(3584), 1, + ACTIONS(6080), 1, anon_sym_COLON_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - STATE(1203), 1, - sym_type_arguments, - STATE(2812), 2, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [84036] = 7, + ACTIONS(4865), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85026] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_LT2, - ACTIONS(4320), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - STATE(1666), 1, - sym_type_arguments, - STATE(2813), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6128), 1, + anon_sym_SEMI, + STATE(3580), 1, + sym_where_clause, + STATE(2837), 2, sym_line_comment, sym_block_comment, - [84059] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [85049] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_SQUOTE, - STATE(411), 1, - sym_block, - STATE(3463), 1, - sym_label, - STATE(2814), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(4905), 1, + anon_sym_for, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + STATE(2030), 1, + sym_type_arguments, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [84082] = 4, + [85072] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2815), 2, + ACTIONS(6130), 1, + anon_sym_LPAREN, + ACTIONS(6132), 1, + anon_sym_LBRACK, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(2748), 1, + sym_token_tree, + STATE(2839), 2, sym_line_comment, sym_block_comment, - ACTIONS(943), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [84099] = 6, + [85095] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5290), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2816), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6136), 1, + anon_sym_SEMI, + STATE(3724), 1, + sym_where_clause, + STATE(2840), 2, sym_line_comment, sym_block_comment, - [84120] = 5, + [85118] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON, - STATE(2817), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1274), 1, + sym_declaration_list, + STATE(3330), 1, + sym_where_clause, + STATE(2841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84139] = 7, + [85141] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5703), 1, - anon_sym_COMMA, - STATE(2912), 1, - aux_sym_parameters_repeat1, - STATE(2818), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + ACTIONS(4989), 1, + anon_sym_BANG, + STATE(1284), 1, + sym_type_arguments, + STATE(2842), 2, sym_line_comment, sym_block_comment, - [84162] = 7, + [85164] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6054), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(6056), 1, - anon_sym_for, - ACTIONS(6058), 1, - anon_sym_loop, - ACTIONS(6060), 1, - anon_sym_while, - STATE(2819), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3518), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [84185] = 7, + [85187] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(6062), 1, + ACTIONS(6138), 1, anon_sym_SEMI, - STATE(3538), 1, + STATE(3582), 1, sym_where_clause, - STATE(2820), 2, - sym_line_comment, - sym_block_comment, - [84208] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6064), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6066), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84227] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - STATE(3600), 1, - sym_type_arguments, - ACTIONS(5899), 2, - sym_identifier, - sym_super, - STATE(2822), 2, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [84248] = 6, + [85210] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - STATE(3774), 1, + ACTIONS(5803), 1, + anon_sym_COLON_COLON, + ACTIONS(6140), 1, + anon_sym_for, + STATE(2030), 1, sym_type_arguments, - ACTIONS(5899), 2, - sym_identifier, - sym_super, - STATE(2823), 2, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [84269] = 6, + [85233] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_DOT_DOT, - ACTIONS(5294), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2824), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3519), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2846), 2, sym_line_comment, sym_block_comment, - [84290] = 7, + [85256] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6068), 1, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5338), 1, anon_sym_LBRACE, - ACTIONS(6070), 1, - anon_sym_for, - ACTIONS(6072), 1, - anon_sym_loop, - ACTIONS(6074), 1, - anon_sym_while, - STATE(2825), 2, + STATE(1527), 1, + sym_delim_token_tree, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [84313] = 7, + [85279] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5643), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(5649), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5646), 1, anon_sym_COMMA, - STATE(2946), 1, - aux_sym_slice_pattern_repeat1, - STATE(2826), 2, + STATE(3052), 1, + aux_sym_parameters_repeat1, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [84336] = 7, + [85302] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5809), 1, + ACTIONS(5803), 1, anon_sym_COLON_COLON, - ACTIONS(6076), 1, + ACTIONS(6142), 1, anon_sym_for, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2827), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - [84359] = 5, + [85325] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6078), 1, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, sym_identifier, - STATE(2828), 2, + ACTIONS(6144), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2850), 2, sym_line_comment, sym_block_comment, - ACTIONS(6080), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84378] = 7, + [85348] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6082), 1, - anon_sym_RPAREN, - ACTIONS(6084), 1, - anon_sym_COMMA, - STATE(3088), 1, - aux_sym_slice_pattern_repeat1, - STATE(2829), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6146), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [84401] = 7, + [85371] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6086), 1, - anon_sym_RPAREN, - ACTIONS(6088), 1, - anon_sym_COMMA, - STATE(3155), 1, - aux_sym_slice_pattern_repeat1, - STATE(2830), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1530), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2852), 2, sym_line_comment, sym_block_comment, - [84424] = 7, + [85394] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(4913), 1, - anon_sym_for, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - STATE(2012), 1, - sym_type_arguments, - STATE(2831), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3664), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [84447] = 7, + [85417] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(704), 1, + ACTIONS(5071), 1, + anon_sym_where, + STATE(1368), 1, sym_declaration_list, - STATE(3384), 1, + STATE(3393), 1, sym_where_clause, - STATE(2832), 2, + STATE(2854), 2, sym_line_comment, sym_block_comment, - [84470] = 5, + [85440] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5958), 1, - anon_sym_COLON_COLON, - STATE(2833), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1307), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84489] = 7, + [85463] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, - anon_sym_LBRACE, - ACTIONS(6092), 1, - anon_sym_for, - ACTIONS(6094), 1, - anon_sym_loop, - ACTIONS(6096), 1, - anon_sym_while, - STATE(2834), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6148), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [84512] = 7, + [85486] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5809), 1, + ACTIONS(5803), 1, anon_sym_COLON_COLON, - ACTIONS(6098), 1, + ACTIONS(6150), 1, anon_sym_for, - STATE(2012), 1, + STATE(2030), 1, sym_type_arguments, - STATE(2835), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [84535] = 7, + [85509] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - ACTIONS(6100), 1, - anon_sym_for, - STATE(2012), 1, - sym_type_arguments, - STATE(2836), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(3665), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2858), 2, sym_line_comment, sym_block_comment, - [84558] = 7, + [85532] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5719), 1, - anon_sym_RPAREN, - ACTIONS(5721), 1, - anon_sym_COMMA, - STATE(2867), 1, - aux_sym_parameters_repeat1, - STATE(2837), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6152), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [84581] = 7, + [85555] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - ACTIONS(6102), 1, - anon_sym_for, - STATE(2012), 1, - sym_type_arguments, - STATE(2838), 2, + STATE(2860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [85572] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6154), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [84604] = 7, + [85595] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3039), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2839), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6156), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2862), 2, sym_line_comment, sym_block_comment, - [84627] = 7, + [85618] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6108), 1, - anon_sym_SEMI, - STATE(3582), 1, - sym_where_clause, - STATE(2840), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6158), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [84650] = 5, + [85641] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5960), 1, - anon_sym_COLON_COLON, - STATE(2841), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(6160), 1, + anon_sym_GT, + STATE(3383), 1, + sym_lifetime, + STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84669] = 5, + [85664] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6002), 1, - anon_sym_COLON_COLON, - STATE(2842), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + STATE(3553), 1, + sym_type_arguments, + ACTIONS(5831), 2, + sym_identifier, + sym_super, + STATE(2865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84688] = 7, + [85685] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3553), 1, + sym_type_arguments, + STATE(2866), 2, + sym_line_comment, + sym_block_comment, + [85708] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5338), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_delim_token_tree, + STATE(2867), 2, + sym_line_comment, + sym_block_comment, + [85731] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2081), 1, + STATE(2102), 1, sym_parameters, - STATE(2843), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [84711] = 7, + [85754] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5471), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(710), 1, - sym_enum_variant_list, - STATE(3205), 1, - sym_where_clause, - STATE(2844), 2, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1546), 1, + sym_block, + STATE(3714), 1, + sym_label, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [84734] = 7, + [85777] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5045), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(633), 1, - sym_field_declaration_list, - STATE(3197), 1, + STATE(675), 1, + sym_declaration_list, + STATE(3346), 1, sym_where_clause, - STATE(2845), 2, + STATE(2870), 2, + sym_line_comment, + sym_block_comment, + [85800] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(3376), 1, + sym_trait_bounds, + ACTIONS(5797), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [84757] = 7, + [85821] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4734), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(1336), 1, + sym_parameters, + STATE(2031), 1, sym_type_arguments, - STATE(2846), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - [84780] = 7, + [85844] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6110), 1, - anon_sym_RPAREN, - ACTIONS(6112), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2847), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1813), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [84803] = 5, + [85867] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6116), 1, - anon_sym_COLON, - ACTIONS(6114), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2848), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_SQUOTE, + STATE(1815), 1, + sym_block, + STATE(3779), 1, + sym_label, + STATE(2874), 2, sym_line_comment, sym_block_comment, - [84821] = 6, + [85890] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6118), 1, - anon_sym_SEMI, - STATE(1352), 1, - sym_declaration_list, - STATE(2849), 2, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [84841] = 6, + ACTIONS(3390), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [85907] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6120), 1, - anon_sym_SEMI, - STATE(1356), 1, - sym_declaration_list, - STATE(2850), 2, + ACTIONS(6162), 1, + anon_sym_DQUOTE, + STATE(2628), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2876), 2, sym_line_comment, sym_block_comment, - [84861] = 5, + [85928] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6122), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2851), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(597), 1, + sym_enum_variant_list, + STATE(3192), 1, + sym_where_clause, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [84879] = 6, + [85951] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(4310), 1, + ACTIONS(6164), 1, + anon_sym_GT, + ACTIONS(6166), 1, anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(2852), 2, + STATE(3031), 1, + aux_sym_use_bounds_repeat1, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [84899] = 6, + [85971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6124), 1, - anon_sym_SEMI, - STATE(761), 1, - sym_declaration_list, - STATE(2853), 2, + ACTIONS(6168), 1, + anon_sym_RBRACE, + ACTIONS(6170), 1, + anon_sym_COMMA, + STATE(2915), 1, + aux_sym_struct_pattern_repeat1, + STATE(2879), 2, sym_line_comment, sym_block_comment, - [84919] = 5, + [85991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - ACTIONS(6126), 2, - anon_sym_RPAREN, + ACTIONS(6172), 1, + anon_sym_RBRACE, + ACTIONS(6174), 1, anon_sym_COMMA, - STATE(2854), 2, + STATE(2917), 1, + aux_sym_struct_pattern_repeat1, + STATE(2880), 2, sym_line_comment, sym_block_comment, - [84937] = 6, + [86011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6128), 1, - anon_sym_SEMI, - STATE(1364), 1, - sym_declaration_list, - STATE(2855), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6176), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2881), 2, sym_line_comment, sym_block_comment, - [84957] = 6, + [86029] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6130), 1, - anon_sym_SEMI, - STATE(1366), 1, - sym_declaration_list, - STATE(2856), 2, + ACTIONS(3254), 1, + anon_sym_RPAREN, + ACTIONS(6178), 1, + anon_sym_COMMA, + STATE(2990), 1, + aux_sym_tuple_type_repeat1, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [84977] = 6, + [86049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6132), 1, - anon_sym_SEMI, - STATE(595), 1, - sym_declaration_list, - STATE(2857), 2, + STATE(2883), 2, sym_line_comment, sym_block_comment, - [84997] = 6, - ACTIONS(27), 1, + ACTIONS(4654), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [86065] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_move, - STATE(222), 1, - sym_closure_parameters, - STATE(2858), 2, + ACTIONS(5696), 1, + anon_sym_RPAREN, + ACTIONS(5698), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, + STATE(2884), 2, sym_line_comment, sym_block_comment, - [85017] = 4, + [86085] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2859), 2, + ACTIONS(6180), 1, + anon_sym_GT, + ACTIONS(6182), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_use_bounds_repeat1, + STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4939), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85033] = 4, + [86105] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2860), 2, + ACTIONS(6184), 1, + anon_sym_GT, + ACTIONS(6186), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_use_bounds_repeat1, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4941), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85049] = 6, + [86125] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6136), 1, + ACTIONS(6188), 1, anon_sym_SEMI, - ACTIONS(6138), 1, + ACTIONS(6190), 1, anon_sym_EQ, - STATE(2861), 2, + STATE(2887), 2, sym_line_comment, sym_block_comment, - [85069] = 6, + [86145] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5368), 1, - anon_sym_RBRACE, - ACTIONS(6140), 1, - anon_sym_COMMA, - STATE(3115), 1, - aux_sym_struct_pattern_repeat1, - STATE(2862), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6192), 1, + anon_sym_SEMI, + STATE(701), 1, + sym_declaration_list, + STATE(2888), 2, sym_line_comment, sym_block_comment, - [85089] = 6, + [86165] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4829), 1, - anon_sym_GT, - ACTIONS(6142), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_type_parameters_repeat1, - STATE(2863), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6194), 1, + anon_sym_SEMI, + STATE(3539), 1, + sym_where_clause, + STATE(2889), 2, sym_line_comment, sym_block_comment, - [85109] = 6, + [86185] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5089), 1, + ACTIONS(6196), 1, anon_sym_RBRACE, - ACTIONS(6144), 1, + ACTIONS(6198), 1, anon_sym_COMMA, - STATE(3054), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2864), 2, + STATE(2924), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2890), 2, sym_line_comment, sym_block_comment, - [85129] = 6, + [86205] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(6146), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2865), 2, + ACTIONS(931), 1, + anon_sym_RPAREN, + ACTIONS(4344), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2891), 2, sym_line_comment, sym_block_comment, - [85149] = 6, + [86225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(975), 1, - anon_sym_RPAREN, - ACTIONS(6148), 1, - anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(2866), 2, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [85169] = 6, + ACTIONS(6200), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86241] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(5629), 1, + ACTIONS(4851), 1, + anon_sym_GT, + ACTIONS(6202), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_parameters_repeat1, - STATE(2867), 2, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(2893), 2, sym_line_comment, sym_block_comment, - [85189] = 5, + [86261] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6150), 2, - anon_sym_RBRACE, + ACTIONS(4851), 1, + anon_sym_GT, + ACTIONS(6202), 1, anon_sym_COMMA, - STATE(2868), 2, + STATE(2928), 1, + aux_sym_type_parameters_repeat1, + STATE(2894), 2, sym_line_comment, sym_block_comment, - [85207] = 4, + [86281] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2869), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6204), 1, + anon_sym_SEMI, + STATE(1163), 1, + sym_declaration_list, + STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_EQ_GT, + [86301] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [85223] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6152), 1, - anon_sym_SEMI, - STATE(3506), 1, - sym_where_clause, - STATE(2870), 2, + ACTIONS(5079), 1, + anon_sym_move, + STATE(233), 1, + sym_closure_parameters, + STATE(2896), 2, sym_line_comment, sym_block_comment, - [85243] = 6, + [86321] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6154), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6206), 1, + anon_sym_SEMI, + ACTIONS(6208), 1, anon_sym_EQ, - STATE(3669), 1, - sym_where_clause, - STATE(2871), 2, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [85263] = 6, + [86341] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_COLON_COLON, - STATE(1666), 1, - sym_type_arguments, - STATE(2872), 2, + ACTIONS(6210), 1, + anon_sym_RBRACE, + ACTIONS(6212), 1, + anon_sym_COMMA, + STATE(2936), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2898), 2, sym_line_comment, sym_block_comment, - [85283] = 6, + [86361] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4829), 1, - anon_sym_GT, - ACTIONS(6142), 1, - anon_sym_COMMA, - STATE(2941), 1, - aux_sym_type_parameters_repeat1, - STATE(2873), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6214), 1, + anon_sym_SEMI, + STATE(3502), 1, + sym_where_clause, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [85303] = 6, + [86381] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(5629), 1, - anon_sym_COMMA, - STATE(3091), 1, - aux_sym_parameters_repeat1, - STATE(2874), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6216), 1, + anon_sym_SEMI, + STATE(3624), 1, + sym_where_clause, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [85323] = 4, + [86401] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2875), 2, + ACTIONS(6104), 1, + anon_sym_RPAREN, + ACTIONS(6106), 1, + anon_sym_COMMA, + STATE(3023), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4997), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85339] = 6, + [86421] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6156), 1, + ACTIONS(6218), 1, anon_sym_SEMI, - STATE(559), 1, + STATE(1191), 1, sym_declaration_list, - STATE(2876), 2, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [85359] = 4, + [86441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2877), 2, + ACTIONS(5009), 1, + anon_sym_RBRACE, + ACTIONS(6220), 1, + anon_sym_COMMA, + STATE(2906), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85375] = 5, + [86461] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - ACTIONS(5489), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2878), 2, + ACTIONS(6222), 1, + sym_identifier, + ACTIONS(6224), 1, + anon_sym_await, + ACTIONS(6226), 1, + sym_integer_literal, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [85393] = 4, + [86481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2879), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6228), 1, + anon_sym_SEMI, + STATE(3782), 1, + sym_where_clause, + STATE(2905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85409] = 6, + [86501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, + ACTIONS(6230), 1, anon_sym_RBRACE, - ACTIONS(6158), 1, + ACTIONS(6232), 1, anon_sym_COMMA, - STATE(2897), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2880), 2, + STATE(2906), 3, sym_line_comment, sym_block_comment, - [85429] = 4, + aux_sym_field_initializer_list_repeat1, + [86519] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2881), 2, + ACTIONS(965), 1, + anon_sym_RPAREN, + ACTIONS(4308), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85445] = 6, + [86539] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5805), 1, - anon_sym_GT, - ACTIONS(6160), 1, - anon_sym_COMMA, - STATE(2926), 1, - aux_sym_use_bounds_repeat1, - STATE(2882), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6235), 1, + anon_sym_SEMI, + STATE(703), 1, + sym_declaration_list, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [85465] = 6, + [86559] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(5059), 1, - anon_sym_COLON_COLON, - STATE(2487), 1, - sym_trait_bounds, - STATE(2883), 2, + ACTIONS(6237), 1, + anon_sym_EQ_GT, + ACTIONS(6239), 1, + anon_sym_PIPE, + ACTIONS(6241), 1, + anon_sym_if, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [85485] = 6, + [86579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6110), 1, - anon_sym_RPAREN, - ACTIONS(6112), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6243), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2935), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2884), 2, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [85505] = 4, + [86597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2885), 2, + ACTIONS(969), 1, + anon_sym_RBRACK, + ACTIONS(6245), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85521] = 6, + [86617] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6162), 1, - anon_sym_SEMI, - ACTIONS(6164), 1, - anon_sym_RBRACK, - STATE(2886), 2, + ACTIONS(1661), 1, + anon_sym_GT, + ACTIONS(6247), 1, + anon_sym_COMMA, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, + STATE(2912), 2, sym_line_comment, sym_block_comment, - [85541] = 6, + [86637] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5348), 1, - anon_sym_RBRACE, - ACTIONS(6166), 1, + ACTIONS(1661), 1, + anon_sym_GT, + ACTIONS(6247), 1, anon_sym_COMMA, - STATE(3115), 1, - aux_sym_struct_pattern_repeat1, - STATE(2887), 2, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [85561] = 5, + [86657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5956), 2, + ACTIONS(3126), 1, anon_sym_RPAREN, + ACTIONS(6249), 1, anon_sym_COMMA, - STATE(2888), 2, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [85579] = 4, + [86677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2889), 2, + ACTIONS(5400), 1, + anon_sym_RBRACE, + ACTIONS(6251), 1, + anon_sym_COMMA, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85595] = 6, + [86697] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5807), 1, - anon_sym_GT, - ACTIONS(6168), 1, + ACTIONS(3128), 1, + anon_sym_RPAREN, + ACTIONS(6253), 1, anon_sym_COMMA, - STATE(2926), 1, - aux_sym_use_bounds_repeat1, - STATE(2890), 2, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [85615] = 6, + [86717] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6170), 1, + ACTIONS(5404), 1, + anon_sym_RBRACE, + ACTIONS(6255), 1, anon_sym_COMMA, - STATE(2895), 1, - aux_sym_type_arguments_repeat1, - STATE(2891), 2, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [85635] = 6, + [86737] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6170), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(2892), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6257), 1, + anon_sym_SEMI, + STATE(709), 1, + sym_declaration_list, + STATE(2918), 2, sym_line_comment, sym_block_comment, - [85655] = 5, + [86757] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6172), 2, + ACTIONS(1365), 1, anon_sym_RPAREN, + ACTIONS(5745), 1, anon_sym_COMMA, - STATE(2893), 2, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [85673] = 5, + [86777] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5956), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(6174), 1, + ACTIONS(5745), 1, anon_sym_COMMA, - STATE(2894), 3, - sym_line_comment, - sym_block_comment, + STATE(2955), 1, aux_sym_parameters_repeat1, - [85691] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6177), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(2895), 2, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [85711] = 6, + [86797] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5657), 1, - anon_sym_COMMA, - ACTIONS(6179), 1, - anon_sym_PIPE, - STATE(2996), 1, - aux_sym_closure_parameters_repeat1, - STATE(2896), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6259), 1, + anon_sym_SEMI, + ACTIONS(6261), 1, + anon_sym_EQ, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [85731] = 5, + [86817] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6181), 1, - anon_sym_RBRACE, - ACTIONS(6183), 1, + ACTIONS(6060), 1, + anon_sym_GT, + ACTIONS(6263), 1, anon_sym_COMMA, - STATE(2897), 3, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(2922), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [85749] = 5, + [86837] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6186), 2, - anon_sym_RPAREN, + ACTIONS(6062), 1, + anon_sym_GT, + ACTIONS(6265), 1, anon_sym_COMMA, - STATE(2898), 2, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [85767] = 6, + [86857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6188), 1, - anon_sym_SEMI, - STATE(597), 1, - sym_declaration_list, - STATE(2899), 2, + ACTIONS(5095), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2924), 2, sym_line_comment, sym_block_comment, - [85787] = 6, + [86877] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5053), 1, + ACTIONS(5095), 1, anon_sym_RBRACE, - ACTIONS(6190), 1, + ACTIONS(6267), 1, anon_sym_COMMA, - STATE(2948), 1, + STATE(2957), 1, aux_sym_enum_variant_list_repeat2, - STATE(2900), 2, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [85807] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [86897] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6192), 1, - anon_sym_move, - STATE(226), 1, - sym_closure_parameters, - STATE(2901), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(6269), 1, + anon_sym_GT, + ACTIONS(6271), 1, + anon_sym_as, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [85827] = 6, + [86917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6194), 1, - anon_sym_RPAREN, - ACTIONS(6196), 1, - anon_sym_COMMA, - STATE(3045), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2902), 2, + STATE(2927), 2, sym_line_comment, sym_block_comment, - [85847] = 6, + ACTIONS(4971), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5053), 1, - anon_sym_RBRACE, - ACTIONS(6190), 1, + ACTIONS(4839), 1, + anon_sym_GT, + ACTIONS(6273), 1, anon_sym_COMMA, - STATE(3149), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2903), 2, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(2928), 2, sym_line_comment, sym_block_comment, - [85867] = 6, + [86953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6198), 1, + ACTIONS(6275), 1, anon_sym_SEMI, - STATE(1150), 1, + STATE(1226), 1, sym_declaration_list, - STATE(2904), 2, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [85887] = 6, + [86973] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6200), 1, - anon_sym_SEMI, - STATE(1152), 1, - sym_declaration_list, - STATE(2905), 2, + STATE(2930), 2, sym_line_comment, sym_block_comment, - [85907] = 5, + ACTIONS(4973), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86989] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6202), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2906), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(1232), 1, + sym_declaration_list, + STATE(2931), 2, sym_line_comment, sym_block_comment, - [85925] = 6, + [87009] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, + ACTIONS(6281), 1, anon_sym_COLON, - STATE(2487), 1, - sym_trait_bounds, - STATE(2907), 2, + ACTIONS(6279), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [85945] = 5, + [87027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6206), 1, - anon_sym_EQ, - ACTIONS(6204), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2908), 2, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [85963] = 6, + ACTIONS(4977), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6208), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6283), 1, anon_sym_SEMI, - STATE(1178), 1, - sym_declaration_list, - STATE(2909), 2, + ACTIONS(6285), 1, + anon_sym_EQ, + STATE(2934), 2, sym_line_comment, sym_block_comment, - [85983] = 6, + [87063] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6210), 1, - anon_sym_SEMI, - STATE(1182), 1, - sym_declaration_list, - STATE(2910), 2, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [86003] = 6, + ACTIONS(4981), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(6212), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2911), 2, + ACTIONS(5097), 1, + anon_sym_RBRACE, + ACTIONS(6287), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2936), 2, sym_line_comment, sym_block_comment, - [86023] = 6, + [87099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(6214), 1, + ACTIONS(5097), 1, + anon_sym_RBRACE, + ACTIONS(6287), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_parameters_repeat1, - STATE(2912), 2, + STATE(2965), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [86043] = 6, + [87119] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_RBRACK, - ACTIONS(6216), 1, - anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(2913), 2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - [86063] = 6, + ACTIONS(4983), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(6218), 1, - anon_sym_GT, - STATE(3258), 1, - sym_lifetime, - STATE(2914), 2, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [86083] = 6, + ACTIONS(4987), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87151] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6220), 1, + ACTIONS(6289), 1, anon_sym_SEMI, - STATE(672), 1, + STATE(1248), 1, sym_declaration_list, - STATE(2915), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [86103] = 5, + [87171] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6222), 1, - anon_sym_GT, - ACTIONS(6224), 1, + ACTIONS(6291), 1, + anon_sym_RBRACE, + ACTIONS(6293), 1, anon_sym_COMMA, - STATE(2916), 3, + STATE(2974), 1, + aux_sym_struct_pattern_repeat1, + STATE(2941), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86121] = 5, + [87191] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6172), 1, - anon_sym_RPAREN, - ACTIONS(6227), 1, - anon_sym_COMMA, - STATE(2917), 3, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6295), 1, + anon_sym_SEMI, + ACTIONS(6297), 1, + anon_sym_EQ, + STATE(2942), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [86139] = 6, + [87211] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6230), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6299), 1, anon_sym_SEMI, - ACTIONS(6232), 1, - anon_sym_EQ, - STATE(2918), 2, + STATE(3710), 1, + sym_where_clause, + STATE(2943), 2, sym_line_comment, sym_block_comment, - [86159] = 6, + [87231] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6234), 1, + ACTIONS(6301), 1, anon_sym_SEMI, - STATE(1189), 1, + STATE(768), 1, sym_declaration_list, - STATE(2919), 2, + STATE(2944), 2, sym_line_comment, sym_block_comment, - [86179] = 6, + [87251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6236), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6303), 1, anon_sym_SEMI, - STATE(567), 1, - sym_declaration_list, - STATE(2920), 2, + ACTIONS(6305), 1, + anon_sym_EQ, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [86199] = 6, + [87271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(1191), 1, - sym_declaration_list, - STATE(2921), 2, + ACTIONS(971), 1, + anon_sym_RPAREN, + ACTIONS(6307), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2946), 2, sym_line_comment, sym_block_comment, - [86219] = 4, + [87291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2922), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6309), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_declaration_list, + STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(6240), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86235] = 6, + [87311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_GT, - ACTIONS(6242), 1, + ACTIONS(967), 1, + anon_sym_RBRACK, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(3059), 1, - aux_sym_type_arguments_repeat1, - STATE(2923), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [86255] = 6, + [87331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6244), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6313), 1, anon_sym_SEMI, - STATE(1255), 1, - sym_declaration_list, - STATE(2924), 2, + STATE(3725), 1, + sym_where_clause, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [86275] = 6, + [87351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_GT, - ACTIONS(6242), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(2925), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - [86295] = 5, + ACTIONS(6315), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6246), 1, + ACTIONS(1669), 1, anon_sym_GT, - ACTIONS(6248), 1, + ACTIONS(6317), 1, anon_sym_COMMA, - STATE(2926), 3, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(2951), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [86313] = 6, + [87387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6251), 1, - anon_sym_SEMI, - ACTIONS(6253), 1, - anon_sym_EQ, - STATE(2927), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6319), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [86333] = 6, + [87405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(6255), 1, + ACTIONS(5099), 1, anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(2928), 2, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [86353] = 6, + [87425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6257), 1, - anon_sym_SEMI, - STATE(3527), 1, - sym_where_clause, - STATE(2929), 2, + ACTIONS(6321), 1, + anon_sym_RBRACE, + ACTIONS(6323), 1, + anon_sym_COMMA, + STATE(3120), 1, + aux_sym_use_list_repeat1, + STATE(2954), 2, sym_line_comment, sym_block_comment, - [86373] = 6, + [87445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_SEMI, - STATE(642), 1, - sym_declaration_list, - STATE(2930), 2, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(6325), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [86393] = 6, + [87465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6261), 1, + ACTIONS(6319), 1, anon_sym_RPAREN, - ACTIONS(6263), 1, + ACTIONS(6327), 1, anon_sym_COMMA, - STATE(3045), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2931), 2, + STATE(2956), 3, sym_line_comment, sym_block_comment, - [86413] = 6, + aux_sym_tuple_pattern_repeat1, + [87483] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - anon_sym_SEMI, - STATE(1230), 1, - sym_declaration_list, - STATE(2932), 2, + ACTIONS(5101), 1, + anon_sym_RBRACE, + ACTIONS(6330), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2957), 2, + sym_line_comment, + sym_block_comment, + [87503] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + sym_identifier, + ACTIONS(6334), 1, + anon_sym_ref, + ACTIONS(6336), 1, + sym_mutable_specifier, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [86433] = 6, + [87523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6267), 1, + ACTIONS(6338), 1, anon_sym_SEMI, - STATE(1233), 1, + STATE(1300), 1, sym_declaration_list, - STATE(2933), 2, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [86453] = 6, + [87543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(935), 1, - anon_sym_RPAREN, - ACTIONS(4276), 1, - anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(2934), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6340), 1, + anon_sym_SEMI, + STATE(1305), 1, + sym_declaration_list, + STATE(2960), 2, sym_line_comment, sym_block_comment, - [86473] = 6, + [87563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2046), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6342), 2, anon_sym_RPAREN, - ACTIONS(6269), 1, anon_sym_COMMA, - STATE(3023), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2935), 2, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [86493] = 4, + [87581] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2936), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, + anon_sym_SEMI, + STATE(1330), 1, + sym_declaration_list, + STATE(2962), 2, sym_line_comment, sym_block_comment, - ACTIONS(6271), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [86509] = 6, + [87601] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6273), 1, + ACTIONS(6346), 1, anon_sym_SEMI, - STATE(569), 1, + STATE(1332), 1, sym_declaration_list, - STATE(2937), 2, + STATE(2963), 2, sym_line_comment, sym_block_comment, - [86529] = 6, + [87621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6275), 1, + ACTIONS(6348), 1, anon_sym_SEMI, - ACTIONS(6277), 1, + ACTIONS(6350), 1, anon_sym_EQ, - STATE(2938), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [86549] = 6, + [87641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(6279), 1, - anon_sym_GT, - ACTIONS(6281), 1, - anon_sym_as, - STATE(2939), 2, + ACTIONS(5103), 1, + anon_sym_RBRACE, + ACTIONS(6352), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2965), 2, sym_line_comment, sym_block_comment, - [86569] = 4, + [87661] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2940), 2, + ACTIONS(1667), 1, + anon_sym_GT, + ACTIONS(6354), 1, + anon_sym_COMMA, + STATE(3062), 1, + aux_sym_type_arguments_repeat1, + STATE(2966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86585] = 6, + [87681] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, + ACTIONS(1667), 1, anon_sym_GT, - ACTIONS(6283), 1, + ACTIONS(6354), 1, anon_sym_COMMA, - STATE(2969), 1, - aux_sym_type_parameters_repeat1, - STATE(2941), 2, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [86605] = 6, + [87701] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6285), 1, + ACTIONS(6356), 1, anon_sym_SEMI, - STATE(1425), 1, + STATE(770), 1, sym_declaration_list, - STATE(2942), 2, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [86625] = 4, + [87721] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2943), 2, + ACTIONS(3148), 1, + anon_sym_RPAREN, + ACTIONS(6358), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86641] = 4, + [87741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2944), 2, + ACTIONS(6362), 1, + anon_sym_COLON, + ACTIONS(6360), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86657] = 6, + [87759] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3132), 1, - anon_sym_RBRACK, - ACTIONS(6287), 1, + ACTIONS(5577), 1, + anon_sym_GT, + ACTIONS(5579), 1, anon_sym_COMMA, - STATE(2634), 1, - aux_sym_slice_pattern_repeat1, - STATE(2945), 2, + STATE(3148), 1, + aux_sym_type_parameters_repeat1, + STATE(2971), 2, sym_line_comment, sym_block_comment, - [86677] = 6, + [87779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3108), 1, - anon_sym_RPAREN, - ACTIONS(6289), 1, - anon_sym_COMMA, - STATE(2634), 1, - aux_sym_slice_pattern_repeat1, - STATE(2946), 2, + STATE(2972), 2, sym_line_comment, sym_block_comment, - [86697] = 5, + ACTIONS(4991), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87795] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6291), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2947), 2, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [86715] = 5, + ACTIONS(5013), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87811] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6293), 1, + ACTIONS(5370), 1, anon_sym_RBRACE, - ACTIONS(6295), 1, + ACTIONS(6364), 1, anon_sym_COMMA, - STATE(2948), 3, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2974), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [86733] = 5, + [87831] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(5831), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2949), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6366), 1, + anon_sym_SEMI, + STATE(1385), 1, + sym_declaration_list, + STATE(2975), 2, sym_line_comment, sym_block_comment, - [86751] = 5, + [87851] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6298), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2950), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6368), 1, + anon_sym_SEMI, + STATE(1387), 1, + sym_declaration_list, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [86769] = 6, + [87871] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3548), 1, - anon_sym_LBRACE, - ACTIONS(6300), 1, - anon_sym_COLON_COLON, - STATE(1426), 1, - sym_field_initializer_list, - STATE(2951), 2, + ACTIONS(6370), 1, + anon_sym_RPAREN, + ACTIONS(6372), 1, + anon_sym_COMMA, + STATE(3033), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2977), 2, sym_line_comment, sym_block_comment, - [86789] = 4, + [87891] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2952), 2, + ACTIONS(3150), 1, + anon_sym_RPAREN, + ACTIONS(6374), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_slice_pattern_repeat1, + STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(5003), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86805] = 6, + [87911] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6302), 1, - anon_sym_LPAREN, - ACTIONS(6304), 1, - anon_sym_LBRACK, - ACTIONS(6306), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(2953), 2, + ACTIONS(6376), 1, + anon_sym_SEMI, + STATE(1395), 1, + sym_declaration_list, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [86825] = 6, + [87931] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6308), 1, - anon_sym_LPAREN, - ACTIONS(6310), 1, - anon_sym_LBRACK, - ACTIONS(6312), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(2954), 2, + ACTIONS(6378), 1, + anon_sym_SEMI, + STATE(1397), 1, + sym_declaration_list, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [86845] = 4, + [87951] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2955), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6380), 1, + anon_sym_SEMI, + ACTIONS(6382), 1, + anon_sym_EQ, + STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86861] = 6, + [87971] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6314), 1, - sym_identifier, - ACTIONS(6316), 1, - anon_sym_ref, - ACTIONS(6318), 1, - sym_mutable_specifier, - STATE(2956), 2, + STATE(2982), 2, sym_line_comment, sym_block_comment, - [86881] = 6, + ACTIONS(6384), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [87987] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6320), 1, + ACTIONS(6386), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(1426), 1, sym_declaration_list, - STATE(2957), 2, - sym_line_comment, - sym_block_comment, - [86901] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6322), 1, - anon_sym_GT, - ACTIONS(6324), 1, - anon_sym_COMMA, - STATE(2863), 1, - aux_sym_type_parameters_repeat1, - STATE(2958), 2, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [86921] = 6, + [88007] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(6326), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, - STATE(2959), 2, + ACTIONS(6388), 1, + anon_sym_SEMI, + STATE(1260), 1, + sym_declaration_list, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [86941] = 5, + [88027] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6330), 1, - anon_sym_EQ, - ACTIONS(6328), 2, + ACTIONS(5424), 1, anon_sym_RBRACE, + ACTIONS(6390), 1, anon_sym_COMMA, - STATE(2960), 2, + STATE(3074), 1, + aux_sym_struct_pattern_repeat1, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [86959] = 6, + [88047] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5081), 1, - anon_sym_RBRACE, - ACTIONS(6332), 1, + ACTIONS(997), 1, + anon_sym_RPAREN, + ACTIONS(6392), 1, anon_sym_COMMA, - STATE(2948), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2961), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [86979] = 6, + [88067] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6334), 1, + STATE(2987), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4865), 3, anon_sym_EQ_GT, - ACTIONS(6336), 1, anon_sym_PIPE, - ACTIONS(6338), 1, anon_sym_if, - STATE(2962), 2, - sym_line_comment, - sym_block_comment, - [86999] = 6, + [88083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4949), 1, - anon_sym_BANG, - ACTIONS(6340), 1, - sym_identifier, - STATE(2963), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6394), 1, + anon_sym_SEMI, + ACTIONS(6396), 1, + anon_sym_EQ, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [87019] = 6, + [88103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_GT, - ACTIONS(6342), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6398), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2926), 1, - aux_sym_use_bounds_repeat1, - STATE(2964), 2, + STATE(2989), 2, sym_line_comment, sym_block_comment, - [87039] = 6, + [88121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6344), 1, - anon_sym_SEMI, - ACTIONS(6346), 1, - anon_sym_EQ, - STATE(2965), 2, + ACTIONS(6398), 1, + anon_sym_RPAREN, + ACTIONS(6400), 1, + anon_sym_COMMA, + STATE(2990), 3, sym_line_comment, sym_block_comment, - [87059] = 6, + aux_sym_tuple_type_repeat1, + [88139] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6348), 1, - anon_sym_GT, - ACTIONS(6350), 1, - anon_sym_COMMA, - STATE(2916), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2966), 2, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [87079] = 6, + ACTIONS(5007), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6352), 1, + ACTIONS(6403), 1, anon_sym_SEMI, - STATE(1339), 1, + STATE(1131), 1, sym_declaration_list, - STATE(2967), 2, + STATE(2992), 2, sym_line_comment, sym_block_comment, - [87099] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88175] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6354), 1, - anon_sym_move, - STATE(220), 1, - sym_closure_parameters, - STATE(2968), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(1133), 1, + sym_declaration_list, + STATE(2993), 2, sym_line_comment, sym_block_comment, - [87119] = 5, + [88195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6356), 1, - anon_sym_GT, - ACTIONS(6358), 1, + ACTIONS(5759), 1, + anon_sym_RPAREN, + ACTIONS(5761), 1, anon_sym_COMMA, - STATE(2969), 3, + STATE(3005), 1, + aux_sym_parameters_repeat1, + STATE(2994), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [87137] = 6, + [88215] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6361), 1, - anon_sym_RBRACE, - ACTIONS(6363), 1, - anon_sym_COMMA, - STATE(3146), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2970), 2, + STATE(2995), 2, sym_line_comment, sym_block_comment, - [87157] = 4, + ACTIONS(6407), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2971), 2, + STATE(2996), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, + ACTIONS(4975), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87173] = 4, + [88247] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2972), 2, + STATE(2997), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 3, + ACTIONS(4979), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87189] = 4, + [88263] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2973), 2, + STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(6365), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87205] = 4, + ACTIONS(6409), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88279] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2974), 2, + STATE(2999), 2, sym_line_comment, sym_block_comment, - ACTIONS(5009), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87221] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(6411), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6367), 1, anon_sym_COMMA, - STATE(3054), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2975), 2, - sym_line_comment, - sym_block_comment, - [87241] = 4, + [88295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2976), 2, + STATE(3000), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 3, + ACTIONS(4985), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87257] = 4, + [88311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2977), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6413), 1, + anon_sym_SEMI, + STATE(680), 1, + sym_declaration_list, + STATE(3001), 2, sym_line_comment, sym_block_comment, - ACTIONS(6369), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87273] = 6, + [88331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5118), 1, - anon_sym_RBRACE, - ACTIONS(6371), 1, + ACTIONS(5715), 1, anon_sym_COMMA, - STATE(2948), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2978), 2, + ACTIONS(6415), 1, + anon_sym_PIPE, + STATE(3047), 1, + aux_sym_closure_parameters_repeat1, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [87293] = 6, + [88351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6373), 1, + ACTIONS(6417), 1, anon_sym_RBRACE, - ACTIONS(6375), 1, + ACTIONS(6419), 1, anon_sym_COMMA, - STATE(2887), 1, - aux_sym_struct_pattern_repeat1, - STATE(2979), 2, + STATE(3057), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [87313] = 6, + [88371] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6377), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6421), 1, anon_sym_SEMI, - STATE(3504), 1, - sym_where_clause, - STATE(2980), 2, + ACTIONS(6423), 1, + anon_sym_EQ, + STATE(3004), 2, sym_line_comment, sym_block_comment, - [87333] = 6, + [88391] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5657), 1, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(5686), 1, anon_sym_COMMA, - ACTIONS(6379), 1, - anon_sym_PIPE, - STATE(2896), 1, - aux_sym_closure_parameters_repeat1, - STATE(2981), 2, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(3005), 2, sym_line_comment, sym_block_comment, - [87353] = 6, + [88411] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6381), 1, - anon_sym_SEMI, - STATE(507), 1, - sym_declaration_list, - STATE(2982), 2, + STATE(3006), 2, sym_line_comment, sym_block_comment, - [87373] = 6, + ACTIONS(6425), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_RBRACE, - ACTIONS(6367), 1, + STATE(3007), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4921), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88443] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6427), 1, + sym_mutable_specifier, + ACTIONS(6429), 1, + sym_self, + STATE(3008), 2, + sym_line_comment, + sym_block_comment, + [88463] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(5686), 1, anon_sym_COMMA, - STATE(2864), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2983), 2, + STATE(3113), 1, + aux_sym_parameters_repeat1, + STATE(3009), 2, sym_line_comment, sym_block_comment, - [87393] = 4, + [88483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2984), 2, + STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 3, + ACTIONS(5021), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87409] = 6, + [88499] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4831), 1, - anon_sym_GT, - ACTIONS(6383), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_type_parameters_repeat1, - STATE(2985), 2, + ACTIONS(6431), 1, + anon_sym_move, + STATE(234), 1, + sym_closure_parameters, + STATE(3011), 2, sym_line_comment, sym_block_comment, - [87429] = 6, + [88519] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6385), 1, - anon_sym_SEMI, - STATE(509), 1, - sym_declaration_list, - STATE(2986), 2, + ACTIONS(4805), 1, + anon_sym_COLON, + ACTIONS(5061), 1, + anon_sym_COLON_COLON, + STATE(2550), 1, + sym_trait_bounds, + STATE(3012), 2, sym_line_comment, sym_block_comment, - [87449] = 4, + [88539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2987), 2, + STATE(3013), 2, sym_line_comment, sym_block_comment, - ACTIONS(5011), 3, + ACTIONS(5023), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87465] = 5, + [88555] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6387), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2988), 2, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [87483] = 6, + ACTIONS(5027), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, - anon_sym_RPAREN, - ACTIONS(4288), 1, - anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(2989), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [87503] = 6, + ACTIONS(5033), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6389), 1, - anon_sym_SEMI, - ACTIONS(6391), 1, - anon_sym_EQ, - STATE(2990), 2, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [87523] = 5, + ACTIONS(5035), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + STATE(3017), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5037), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88619] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6393), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2991), 2, + ACTIONS(6433), 1, + anon_sym_SEMI, + ACTIONS(6435), 1, + anon_sym_RBRACK, + STATE(3018), 2, sym_line_comment, sym_block_comment, - [87541] = 4, + [88639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2992), 2, + STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 3, + ACTIONS(5039), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87557] = 6, + [88655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6395), 1, - anon_sym_SEMI, - STATE(1278), 1, - sym_declaration_list, - STATE(2993), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(6437), 1, + anon_sym_GT, + STATE(3351), 1, + sym_lifetime, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [87577] = 6, + [88675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5118), 1, - anon_sym_RBRACE, - ACTIONS(6371), 1, + ACTIONS(6437), 1, + anon_sym_GT, + ACTIONS(6439), 1, anon_sym_COMMA, - STATE(2961), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2994), 2, + STATE(3116), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [87597] = 6, + [88695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(5083), 1, - anon_sym_for, - STATE(2008), 1, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(1284), 1, sym_type_arguments, - STATE(2995), 2, + STATE(3022), 2, sym_line_comment, sym_block_comment, - [87617] = 5, + [88715] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6397), 1, - anon_sym_PIPE, - ACTIONS(6399), 1, + ACTIONS(1832), 1, + anon_sym_RPAREN, + ACTIONS(6441), 1, anon_sym_COMMA, - STATE(2996), 3, + STATE(2956), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3023), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [87635] = 6, + [88735] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6402), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6443), 1, anon_sym_SEMI, - STATE(3522), 1, - sym_where_clause, - STATE(2997), 2, + ACTIONS(6445), 1, + anon_sym_EQ, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [87655] = 6, + [88755] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_GT, - ACTIONS(6404), 1, + ACTIONS(6447), 1, + anon_sym_RPAREN, + ACTIONS(6449), 1, anon_sym_COMMA, - STATE(2926), 1, - aux_sym_use_bounds_repeat1, - STATE(2998), 2, + STATE(3033), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [87675] = 4, + [88775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2999), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6451), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3026), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87691] = 4, + [88793] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3000), 2, + ACTIONS(6453), 1, + anon_sym_GT, + ACTIONS(6455), 1, + anon_sym_COMMA, + STATE(3021), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3027), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87707] = 6, + [88813] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6406), 1, - anon_sym_RBRACE, - ACTIONS(6408), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3001), 2, + STATE(3028), 2, sym_line_comment, sym_block_comment, - [87727] = 6, + ACTIONS(6457), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88829] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6410), 1, - anon_sym_RBRACE, - ACTIONS(6412), 1, + ACTIONS(6148), 1, + anon_sym_GT, + ACTIONS(6459), 1, anon_sym_COMMA, - STATE(3073), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3002), 2, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [87747] = 6, + [88849] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6414), 1, - anon_sym_SEMI, - STATE(575), 1, - sym_declaration_list, - STATE(3003), 2, + ACTIONS(3274), 1, + anon_sym_RPAREN, + ACTIONS(6461), 1, + anon_sym_COMMA, + STATE(2990), 1, + aux_sym_tuple_type_repeat1, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [87767] = 6, + [88869] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(5803), 1, - sym_identifier, - STATE(3268), 1, - sym_lifetime, - STATE(3004), 2, + ACTIONS(6160), 1, + anon_sym_GT, + ACTIONS(6463), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [87787] = 6, + [88889] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6416), 1, - sym_identifier, - ACTIONS(6418), 1, - anon_sym_await, - ACTIONS(6420), 1, - sym_integer_literal, - STATE(3005), 2, + ACTIONS(5636), 1, + anon_sym_RPAREN, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(3043), 1, + aux_sym_parameters_repeat1, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [87807] = 6, + [88909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6422), 1, - anon_sym_SEMI, - STATE(737), 1, - sym_declaration_list, - STATE(3006), 2, + ACTIONS(6465), 1, + anon_sym_RPAREN, + ACTIONS(6467), 1, + anon_sym_COMMA, + STATE(3033), 3, sym_line_comment, sym_block_comment, - [87827] = 6, + aux_sym_ordered_field_declaration_list_repeat1, + [88927] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6424), 1, - anon_sym_SEMI, - STATE(515), 1, - sym_declaration_list, - STATE(3007), 2, + ACTIONS(6470), 1, + anon_sym_GT, + ACTIONS(6472), 1, + anon_sym_COMMA, + STATE(3188), 1, + aux_sym_use_bounds_repeat1, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [87847] = 5, + [88947] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6428), 1, - anon_sym_COLON, - ACTIONS(6426), 2, - anon_sym_RBRACE, + ACTIONS(6474), 1, + anon_sym_GT, + ACTIONS(6476), 1, anon_sym_COMMA, - STATE(3008), 2, + STATE(3048), 1, + aux_sym_use_bounds_repeat1, + STATE(3035), 2, sym_line_comment, sym_block_comment, - [87865] = 6, + [88967] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5519), 1, - anon_sym_GT, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(3096), 1, - aux_sym_type_parameters_repeat1, - STATE(3009), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(4805), 1, + anon_sym_COLON, + STATE(2550), 1, + sym_trait_bounds, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [87885] = 6, + [88987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6430), 1, - anon_sym_SEMI, - STATE(517), 1, - sym_declaration_list, - STATE(3010), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6478), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [87905] = 6, + [89005] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6432), 1, - anon_sym_RBRACE, - ACTIONS(6434), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3011), 2, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(6480), 1, + anon_sym_COLON_COLON, + STATE(1535), 1, + sym_field_initializer_list, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [87925] = 6, + [89025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6436), 1, - anon_sym_SEMI, - STATE(577), 1, - sym_declaration_list, - STATE(3012), 2, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [87945] = 6, + ACTIONS(1023), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [89041] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6438), 1, - anon_sym_SEMI, - STATE(3578), 1, - sym_where_clause, - STATE(3013), 2, + ACTIONS(1665), 1, + anon_sym_GT, + ACTIONS(6482), 1, + anon_sym_COMMA, + STATE(3051), 1, + aux_sym_type_arguments_repeat1, + STATE(3040), 2, sym_line_comment, sym_block_comment, - [87965] = 6, + [89061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6440), 1, - anon_sym_SEMI, - STATE(3511), 1, - sym_where_clause, - STATE(3014), 2, + ACTIONS(1665), 1, + anon_sym_GT, + ACTIONS(6482), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3041), 2, sym_line_comment, sym_block_comment, - [87985] = 6, + [89081] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_SEMI, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(3015), 2, + ACTIONS(6484), 1, + anon_sym_RBRACE, + ACTIONS(6486), 1, + anon_sym_COMMA, + STATE(3042), 3, sym_line_comment, sym_block_comment, - [88005] = 6, + aux_sym_field_declaration_list_repeat1, + [89099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - ACTIONS(6446), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - STATE(2894), 1, + STATE(3098), 1, aux_sym_parameters_repeat1, - STATE(3016), 2, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [88025] = 4, + [89119] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3017), 2, + ACTIONS(6489), 1, + anon_sym_RBRACE, + ACTIONS(6491), 1, + anon_sym_COMMA, + STATE(3121), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3044), 2, sym_line_comment, - sym_block_comment, - ACTIONS(4933), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88041] = 6, + sym_block_comment, + [89139] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6448), 1, - anon_sym_SEMI, - STATE(3618), 1, - sym_where_clause, - STATE(3018), 2, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(5646), 1, + anon_sym_COMMA, + STATE(3052), 1, + aux_sym_parameters_repeat1, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [88061] = 6, + [89159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6450), 1, - anon_sym_SEMI, - STATE(1410), 1, - sym_declaration_list, - STATE(3019), 2, + ACTIONS(6493), 1, + anon_sym_RBRACE, + ACTIONS(6495), 1, + anon_sym_COMMA, + STATE(3046), 3, sym_line_comment, sym_block_comment, - [88081] = 6, + aux_sym_use_list_repeat1, + [89177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6452), 1, - sym_identifier, - ACTIONS(6454), 1, - anon_sym_ref, - ACTIONS(6456), 1, - sym_mutable_specifier, - STATE(3020), 2, + ACTIONS(5715), 1, + anon_sym_COMMA, + ACTIONS(6498), 1, + anon_sym_PIPE, + STATE(3087), 1, + aux_sym_closure_parameters_repeat1, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [88101] = 6, + [89197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6458), 1, - anon_sym_SEMI, - STATE(1398), 1, - sym_declaration_list, - STATE(3021), 2, + ACTIONS(6146), 1, + anon_sym_GT, + ACTIONS(6500), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [88121] = 6, + [89217] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - ACTIONS(6460), 1, + ACTIONS(6502), 1, anon_sym_SEMI, - STATE(557), 1, + STATE(515), 1, sym_declaration_list, - STATE(3022), 2, + STATE(3049), 2, sym_line_comment, sym_block_comment, - [88141] = 5, + [89237] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - anon_sym_RPAREN, - ACTIONS(6462), 1, + ACTIONS(5114), 1, + anon_sym_RBRACE, + ACTIONS(6504), 1, anon_sym_COMMA, - STATE(3023), 3, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3050), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [88159] = 6, + [89257] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5703), 1, + ACTIONS(1663), 1, + anon_sym_GT, + ACTIONS(6506), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_parameters_repeat1, - STATE(3024), 2, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3051), 2, sym_line_comment, sym_block_comment, - [88179] = 4, + [89277] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3025), 2, + ACTIONS(1369), 1, + anon_sym_RPAREN, + ACTIONS(6508), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(3052), 2, sym_line_comment, sym_block_comment, - ACTIONS(6465), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88195] = 4, + [89297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3026), 2, + ACTIONS(5711), 1, + anon_sym_COLON, + ACTIONS(6510), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(3053), 2, sym_line_comment, sym_block_comment, - ACTIONS(6467), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88211] = 6, + [89315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6469), 1, - anon_sym_LPAREN, - ACTIONS(6471), 1, - anon_sym_LBRACK, - ACTIONS(6473), 1, - anon_sym_LBRACE, - STATE(3027), 2, + STATE(3054), 2, sym_line_comment, sym_block_comment, - [88231] = 6, + ACTIONS(5043), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(4987), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(3028), 2, + STATE(3055), 2, sym_line_comment, sym_block_comment, - [88251] = 6, + [89351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, - anon_sym_LBRACE, - ACTIONS(6475), 1, - anon_sym_COLON_COLON, - STATE(1791), 1, - sym_field_initializer_list, - STATE(3029), 2, + ACTIONS(6514), 1, + anon_sym_EQ, + ACTIONS(6512), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [88271] = 6, + [89369] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6477), 1, - anon_sym_SEMI, - ACTIONS(6479), 1, - anon_sym_EQ, - STATE(3030), 2, + ACTIONS(5135), 1, + anon_sym_RBRACE, + ACTIONS(6516), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3057), 2, sym_line_comment, sym_block_comment, - [88291] = 6, + [89389] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6481), 1, - anon_sym_SEMI, - STATE(618), 1, - sym_declaration_list, - STATE(3031), 2, + STATE(3058), 2, sym_line_comment, sym_block_comment, - [88311] = 4, + ACTIONS(5045), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3032), 2, + ACTIONS(5135), 1, + anon_sym_RBRACE, + ACTIONS(6516), 1, + anon_sym_COMMA, + STATE(3179), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3059), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88327] = 6, + [89425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(917), 1, - anon_sym_RPAREN, - ACTIONS(6483), 1, + ACTIONS(6518), 1, + anon_sym_GT, + ACTIONS(6520), 1, anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(3033), 2, + STATE(3029), 1, + aux_sym_use_bounds_repeat1, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [88347] = 6, + [89445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6485), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6522), 1, anon_sym_SEMI, - STATE(743), 1, - sym_declaration_list, - STATE(3034), 2, + STATE(3538), 1, + sym_where_clause, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [88367] = 6, + [89465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, + ACTIONS(1655), 1, + anon_sym_GT, + ACTIONS(6524), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3062), 2, + sym_line_comment, + sym_block_comment, + [89485] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(6487), 1, - anon_sym_SEMI, - ACTIONS(6489), 1, - anon_sym_RBRACK, - STATE(3035), 2, + ACTIONS(6526), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3063), 2, sym_line_comment, sym_block_comment, - [88387] = 6, + [89503] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6491), 1, - anon_sym_SEMI, - STATE(3516), 1, - sym_where_clause, - STATE(3036), 2, + ACTIONS(6528), 1, + anon_sym_move, + STATE(248), 1, + sym_closure_parameters, + STATE(3064), 2, sym_line_comment, sym_block_comment, - [88407] = 6, + [89523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_RBRACE, - ACTIONS(6493), 1, + ACTIONS(5797), 1, + anon_sym_GT, + ACTIONS(6530), 1, anon_sym_COMMA, - STATE(3055), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3037), 2, + STATE(3065), 3, sym_line_comment, sym_block_comment, - [88427] = 5, + aux_sym_type_arguments_repeat1, + [89541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6497), 1, - anon_sym_COLON, - ACTIONS(6495), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3038), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6533), 1, + anon_sym_SEMI, + ACTIONS(6535), 1, + anon_sym_RBRACK, + STATE(3066), 2, sym_line_comment, sym_block_comment, - [88445] = 6, + [89561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_COMMA, - STATE(3045), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3039), 2, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [88465] = 4, + ACTIONS(5615), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89577] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3040), 2, + STATE(3068), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 3, + ACTIONS(5047), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88481] = 6, + [89593] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, + ACTIONS(4184), 1, anon_sym_LT2, - ACTIONS(5108), 1, + ACTIONS(5112), 1, anon_sym_COLON_COLON, - STATE(1203), 1, + STATE(1659), 1, sym_type_arguments, - STATE(3041), 2, + STATE(3069), 2, sym_line_comment, sym_block_comment, - [88501] = 5, + [89613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6503), 2, - anon_sym_RPAREN, + ACTIONS(6539), 1, + anon_sym_COLON, + ACTIONS(6537), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3042), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [88519] = 6, + [89631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5669), 1, - anon_sym_RPAREN, - ACTIONS(5671), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6541), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3024), 1, - aux_sym_parameters_repeat1, - STATE(3043), 2, + STATE(3071), 2, sym_line_comment, sym_block_comment, - [88539] = 6, + [89649] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6505), 1, - anon_sym_SEMI, - ACTIONS(6507), 1, - anon_sym_EQ, - STATE(3044), 2, + STATE(3072), 2, sym_line_comment, sym_block_comment, - [88559] = 5, + ACTIONS(5049), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - anon_sym_RPAREN, - ACTIONS(6511), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6543), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3045), 3, + STATE(3073), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [88577] = 6, + [89683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RBRACK, - ACTIONS(4260), 1, + ACTIONS(6545), 1, + anon_sym_RBRACE, + ACTIONS(6547), 1, anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(3046), 2, + STATE(3074), 3, sym_line_comment, sym_block_comment, - [88597] = 5, + aux_sym_struct_pattern_repeat1, + [89701] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6514), 2, - anon_sym_RBRACE, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6550), 1, anon_sym_COMMA, - STATE(3047), 2, + STATE(3079), 1, + aux_sym_type_arguments_repeat1, + STATE(3075), 2, sym_line_comment, sym_block_comment, - [88615] = 6, + [89721] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, - anon_sym_RBRACE, - ACTIONS(6516), 1, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6550), 1, anon_sym_COMMA, - STATE(3115), 1, - aux_sym_struct_pattern_repeat1, - STATE(3048), 2, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [88635] = 6, + [89741] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6518), 1, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6552), 1, anon_sym_SEMI, - ACTIONS(6520), 1, - anon_sym_RBRACK, - STATE(3049), 2, + STATE(517), 1, + sym_declaration_list, + STATE(3077), 2, sym_line_comment, sym_block_comment, - [88655] = 6, + [89761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1651), 1, - anon_sym_GT, - ACTIONS(6522), 1, + ACTIONS(6556), 1, + anon_sym_COLON, + ACTIONS(6554), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3050), 2, + STATE(3078), 2, sym_line_comment, sym_block_comment, - [88675] = 5, + [89779] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6524), 1, - anon_sym_RBRACE, - ACTIONS(6526), 1, + ACTIONS(1653), 1, + anon_sym_GT, + ACTIONS(6558), 1, anon_sym_COMMA, - STATE(3051), 3, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, + STATE(3079), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [88693] = 6, + [89799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_RBRACK, - ACTIONS(4248), 1, + ACTIONS(6560), 1, + anon_sym_RBRACE, + ACTIONS(6562), 1, anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(3052), 2, + STATE(3149), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [88713] = 4, + [89819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3053), 2, + STATE(3081), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, + ACTIONS(1501), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88729] = 5, + [89835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - anon_sym_RBRACE, - ACTIONS(6531), 1, + ACTIONS(6564), 1, + anon_sym_GT, + ACTIONS(6566), 1, anon_sym_COMMA, - STATE(3054), 3, + STATE(3082), 3, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [88747] = 6, + aux_sym_type_parameters_repeat1, + [89853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5095), 1, - anon_sym_RBRACE, - ACTIONS(6534), 1, + ACTIONS(4849), 1, + anon_sym_GT, + ACTIONS(6569), 1, anon_sym_COMMA, - STATE(3054), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3055), 2, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [88767] = 4, + [89873] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3056), 2, + ACTIONS(6571), 1, + anon_sym_move, + STATE(256), 1, + sym_closure_parameters, + STATE(3084), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88783] = 6, + [89893] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(6536), 1, - anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(3057), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6573), 1, + anon_sym_SEMI, + STATE(632), 1, + sym_declaration_list, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [88803] = 4, + [89913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3058), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6575), 1, + anon_sym_SEMI, + STATE(3614), 1, + sym_where_clause, + STATE(3086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88819] = 6, + [89933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6538), 1, + ACTIONS(6510), 1, + anon_sym_PIPE, + ACTIONS(6577), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3059), 2, + STATE(3087), 3, sym_line_comment, sym_block_comment, - [88839] = 4, + aux_sym_closure_parameters_repeat1, + [89951] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3060), 2, + STATE(3088), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88855] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1645), 1, - anon_sym_GT, - ACTIONS(6540), 1, + ACTIONS(6580), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(3061), 2, - sym_line_comment, - sym_block_comment, - [88875] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [89967] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6542), 1, - anon_sym_move, - STATE(252), 1, - sym_closure_parameters, - STATE(3062), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6582), 1, + anon_sym_SEMI, + STATE(638), 1, + sym_declaration_list, + STATE(3089), 2, sym_line_comment, sym_block_comment, - [88895] = 4, + [89987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3063), 2, + STATE(3090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4991), 3, + ACTIONS(4871), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88911] = 5, + [90003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5653), 1, - anon_sym_COLON, - ACTIONS(6397), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3064), 2, + ACTIONS(6584), 1, + anon_sym_AMP_AMP, + ACTIONS(4498), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [88929] = 5, + [90021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5595), 1, - anon_sym_GT, - ACTIONS(6544), 1, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3065), 3, + STATE(3092), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [88947] = 4, + [90039] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3066), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5061), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + STATE(3093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4995), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88963] = 6, + [90059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3244), 1, - anon_sym_RPAREN, - ACTIONS(6547), 1, - anon_sym_COMMA, - STATE(2917), 1, - aux_sym_tuple_type_repeat1, - STATE(3067), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6586), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [88983] = 6, + [90079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5911), 1, - anon_sym_RPAREN, - ACTIONS(5913), 1, - anon_sym_COMMA, - STATE(3082), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3068), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6588), 1, + anon_sym_SEMI, + STATE(776), 1, + sym_declaration_list, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [89003] = 6, + [90099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6549), 1, - sym_mutable_specifier, - ACTIONS(6551), 1, - sym_self, - STATE(3069), 2, + STATE(3096), 2, sym_line_comment, sym_block_comment, - [89023] = 6, + ACTIONS(4961), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1645), 1, - anon_sym_GT, - ACTIONS(6540), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6011), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3070), 2, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [89043] = 6, + [90133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_LBRACE, - STATE(3071), 2, + ACTIONS(6011), 1, + anon_sym_RPAREN, + ACTIONS(6590), 1, + anon_sym_COMMA, + STATE(3098), 3, sym_line_comment, sym_block_comment, - [89063] = 6, + aux_sym_parameters_repeat1, + [90151] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5597), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3119), 1, - aux_sym_parameters_repeat1, - STATE(3072), 2, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_ref, + ACTIONS(6597), 1, + sym_mutable_specifier, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [89083] = 6, + [90171] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_RBRACE, - ACTIONS(6493), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3073), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4993), 1, + anon_sym_BANG, + ACTIONS(6599), 1, + sym_identifier, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [89103] = 6, + [90191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5703), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6601), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2912), 1, - aux_sym_parameters_repeat1, - STATE(3074), 2, + STATE(3101), 2, sym_line_comment, sym_block_comment, - [89123] = 5, + [90209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6559), 1, - anon_sym_EQ, - ACTIONS(6561), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3075), 2, + STATE(3102), 2, sym_line_comment, sym_block_comment, - [89141] = 6, + ACTIONS(6603), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 1, - anon_sym_GT, - ACTIONS(6565), 1, - anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, - STATE(3076), 2, + ACTIONS(6584), 1, + anon_sym_AMP_AMP, + ACTIONS(6605), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [89161] = 6, + [90243] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, - anon_sym_GT, - ACTIONS(6569), 1, - anon_sym_COMMA, - STATE(3147), 1, - aux_sym_use_bounds_repeat1, - STATE(3077), 2, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(6607), 1, + anon_sym_COLON_COLON, + STATE(1752), 1, + sym_field_initializer_list, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [89181] = 5, + [90263] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, - anon_sym_COLON, - ACTIONS(6571), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3078), 2, + ACTIONS(3576), 1, + anon_sym_LBRACE, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + STATE(1535), 1, + sym_field_initializer_list, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [89199] = 4, + [90283] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3079), 2, + ACTIONS(6611), 1, + anon_sym_LPAREN, + ACTIONS(6613), 1, + anon_sym_LBRACK, + ACTIONS(6615), 1, + anon_sym_LBRACE, + STATE(3106), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89215] = 6, + [90303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(4286), 1, - anon_sym_COMMA, - STATE(2705), 1, - aux_sym_arguments_repeat1, - STATE(3080), 2, + ACTIONS(6617), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, + anon_sym_LBRACK, + ACTIONS(6621), 1, + anon_sym_LBRACE, + STATE(3107), 2, sym_line_comment, sym_block_comment, - [89235] = 4, + [90323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3081), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6623), 1, + anon_sym_SEMI, + STATE(589), 1, + sym_declaration_list, + STATE(3108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89251] = 6, + [90343] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_RPAREN, - ACTIONS(6575), 1, - anon_sym_COMMA, - STATE(3023), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3082), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6625), 1, + anon_sym_SEMI, + ACTIONS(6627), 1, + anon_sym_EQ, + STATE(3109), 2, sym_line_comment, sym_block_comment, - [89271] = 6, + [90363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(5059), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(6629), 1, + anon_sym_LBRACE, + STATE(2031), 1, sym_type_arguments, - STATE(3083), 2, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [89291] = 6, + [90383] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3110), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(6577), 1, + ACTIONS(6631), 1, anon_sym_COMMA, - STATE(2634), 1, + STATE(2742), 1, aux_sym_slice_pattern_repeat1, - STATE(3084), 2, - sym_line_comment, - sym_block_comment, - [89311] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - anon_sym_GT, - ACTIONS(6581), 1, - anon_sym_COMMA, - STATE(2966), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3085), 2, + STATE(3111), 2, sym_line_comment, sym_block_comment, - [89331] = 4, + [90403] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3086), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6633), 1, + anon_sym_SEMI, + STATE(534), 1, + sym_declaration_list, + STATE(3112), 2, sym_line_comment, sym_block_comment, - ACTIONS(5547), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89347] = 5, + [90423] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6583), 2, - anon_sym_RBRACE, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(6635), 1, anon_sym_COMMA, - STATE(3087), 2, + STATE(3098), 1, + aux_sym_parameters_repeat1, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [89365] = 6, + [90443] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3114), 1, + ACTIONS(6637), 1, anon_sym_RPAREN, - ACTIONS(6585), 1, + ACTIONS(6639), 1, anon_sym_COMMA, - STATE(2634), 1, - aux_sym_slice_pattern_repeat1, - STATE(3088), 2, + STATE(3033), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3114), 2, sym_line_comment, sym_block_comment, - [89385] = 6, + [90463] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3548), 1, - anon_sym_LBRACE, - ACTIONS(6587), 1, - anon_sym_COLON_COLON, - STATE(1426), 1, - sym_field_initializer_list, - STATE(3089), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(6641), 1, + anon_sym_GT, + STATE(3351), 1, + sym_lifetime, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [89405] = 4, + [90483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3090), 2, + ACTIONS(6643), 1, + anon_sym_GT, + ACTIONS(6645), 1, + anon_sym_COMMA, + STATE(3116), 3, sym_line_comment, sym_block_comment, - ACTIONS(6589), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89421] = 6, + aux_sym_for_lifetimes_repeat1, + [90501] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, - anon_sym_RPAREN, - ACTIONS(6591), 1, + ACTIONS(6648), 1, + anon_sym_RBRACE, + ACTIONS(6650), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_parameters_repeat1, - STATE(3091), 2, + STATE(2985), 1, + aux_sym_struct_pattern_repeat1, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [89441] = 6, + [90521] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6593), 1, - anon_sym_RBRACE, - ACTIONS(6595), 1, - anon_sym_COMMA, - STATE(3120), 1, - aux_sym_use_list_repeat1, - STATE(3092), 2, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [89461] = 6, + ACTIONS(6652), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90537] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6597), 1, - anon_sym_SEMI, - ACTIONS(6599), 1, - anon_sym_EQ, - STATE(3093), 2, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym_LBRACK, + ACTIONS(6658), 1, + anon_sym_LBRACE, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [89481] = 6, + [90557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6601), 1, - anon_sym_SEMI, - STATE(3489), 1, - sym_where_clause, - STATE(3094), 2, + ACTIONS(4512), 1, + anon_sym_RBRACE, + ACTIONS(6660), 1, + anon_sym_COMMA, + STATE(3046), 1, + aux_sym_use_list_repeat1, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [89501] = 4, + [90577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6603), 3, - anon_sym_SEMI, + ACTIONS(5085), 1, anon_sym_RBRACE, + ACTIONS(6662), 1, anon_sym_COMMA, - [89517] = 6, + STATE(3042), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3121), 2, + sym_line_comment, + sym_block_comment, + [90597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_GT, - ACTIONS(6605), 1, + ACTIONS(5085), 1, + anon_sym_RBRACE, + ACTIONS(6662), 1, anon_sym_COMMA, - STATE(2969), 1, - aux_sym_type_parameters_repeat1, - STATE(3096), 2, + STATE(3050), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [89537] = 6, + [90617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_GT, - ACTIONS(6605), 1, - anon_sym_COMMA, - STATE(2985), 1, - aux_sym_type_parameters_repeat1, - STATE(3097), 2, + STATE(3123), 2, sym_line_comment, sym_block_comment, - [89557] = 6, + ACTIONS(6664), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90633] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6607), 1, - anon_sym_SEMI, - STATE(3529), 1, - sym_where_clause, - STATE(3098), 2, + ACTIONS(6666), 1, + anon_sym_LPAREN, + ACTIONS(6668), 1, + anon_sym_LBRACK, + ACTIONS(6670), 1, + anon_sym_LBRACE, + STATE(3124), 2, sym_line_comment, sym_block_comment, - [89577] = 6, + [90653] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - ACTIONS(6609), 1, + ACTIONS(6672), 1, anon_sym_SEMI, - STATE(683), 1, + STATE(1312), 1, sym_declaration_list, - STATE(3099), 2, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [89597] = 6, + [90673] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1647), 1, - anon_sym_GT, - ACTIONS(6611), 1, - anon_sym_COMMA, - STATE(3154), 1, - aux_sym_type_arguments_repeat1, - STATE(3100), 2, + ACTIONS(6674), 1, + anon_sym_move, + STATE(219), 1, + sym_closure_parameters, + STATE(3126), 2, sym_line_comment, sym_block_comment, - [89617] = 6, + [90693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(6613), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3101), 2, + STATE(3127), 2, sym_line_comment, sym_block_comment, - [89637] = 4, + ACTIONS(4955), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3102), 2, + STATE(3128), 2, sym_line_comment, sym_block_comment, - ACTIONS(6615), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89653] = 6, + ACTIONS(4957), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90725] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6617), 1, - anon_sym_RBRACE, - ACTIONS(6619), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_struct_pattern_repeat1, - STATE(3103), 2, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [89673] = 6, + ACTIONS(6676), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1647), 1, - anon_sym_GT, - ACTIONS(6611), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3104), 2, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [89693] = 6, + ACTIONS(4959), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 1, - anon_sym_RBRACE, - ACTIONS(6623), 1, - anon_sym_COMMA, - STATE(2862), 1, - aux_sym_struct_pattern_repeat1, - STATE(3105), 2, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [89713] = 4, + ACTIONS(4963), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90773] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3106), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 3, + ACTIONS(4965), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89729] = 4, + [90789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3107), 2, + STATE(3133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 3, + ACTIONS(4967), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89745] = 6, + [90805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(6625), 1, - anon_sym_SEMI, - STATE(702), 1, - sym_declaration_list, - STATE(3108), 2, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [89765] = 6, + ACTIONS(6678), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - anon_sym_GT, - ACTIONS(6629), 1, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6680), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2964), 1, - aux_sym_use_bounds_repeat1, - STATE(3109), 2, + STATE(3135), 2, sym_line_comment, sym_block_comment, - [89785] = 4, + [90839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3110), 2, + ACTIONS(6682), 1, + sym_identifier, + ACTIONS(6684), 1, + anon_sym_await, + ACTIONS(6686), 1, + sym_integer_literal, + STATE(3136), 2, sym_line_comment, sym_block_comment, - ACTIONS(965), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [89801] = 5, + [90859] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - anon_sym_AMP_AMP, - ACTIONS(4378), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3111), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [89819] = 6, + ACTIONS(6688), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(5126), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3112), 2, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + ACTIONS(6690), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [89839] = 6, + [90893] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3252), 1, - anon_sym_RPAREN, - ACTIONS(6633), 1, - anon_sym_COMMA, - STATE(2917), 1, - aux_sym_tuple_type_repeat1, - STATE(3113), 2, + STATE(3139), 2, sym_line_comment, sym_block_comment, - [89859] = 6, + ACTIONS(6692), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3262), 1, - anon_sym_RPAREN, - ACTIONS(6635), 1, + ACTIONS(6694), 1, + anon_sym_GT, + ACTIONS(6696), 1, anon_sym_COMMA, - STATE(2917), 1, - aux_sym_tuple_type_repeat1, - STATE(3114), 2, + STATE(3140), 3, sym_line_comment, sym_block_comment, - [89879] = 5, + aux_sym_use_bounds_repeat1, + [90927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 1, - anon_sym_RBRACE, - ACTIONS(6639), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6040), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3115), 3, + STATE(3141), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [89897] = 4, + [90945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3116), 2, + STATE(3142), 2, sym_line_comment, sym_block_comment, - ACTIONS(6642), 3, + ACTIONS(6699), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [89913] = 6, + [90961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6644), 1, - anon_sym_SEMI, - STATE(3685), 1, - sym_where_clause, - STATE(3117), 2, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(4240), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [89933] = 6, + [90981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6646), 1, + ACTIONS(6701), 1, + anon_sym_EQ, + ACTIONS(6703), 2, anon_sym_GT, - ACTIONS(6648), 1, anon_sym_COMMA, - STATE(2998), 1, - aux_sym_use_bounds_repeat1, - STATE(3118), 2, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [89953] = 6, + [90999] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, + ACTIONS(5870), 1, anon_sym_RPAREN, - ACTIONS(5603), 1, + ACTIONS(5872), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_parameters_repeat1, - STATE(3119), 2, + STATE(3185), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [89973] = 6, + [91019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4486), 1, - anon_sym_RBRACE, - ACTIONS(6650), 1, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(5914), 1, + sym_identifier, + STATE(3383), 1, + sym_lifetime, + STATE(3146), 2, + sym_line_comment, + sym_block_comment, + [91039] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(4338), 1, anon_sym_COMMA, - STATE(3051), 1, - aux_sym_use_list_repeat1, - STATE(3120), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [89993] = 4, + [91059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3121), 2, + ACTIONS(4859), 1, + anon_sym_GT, + ACTIONS(6705), 1, + anon_sym_COMMA, + STATE(3082), 1, + aux_sym_type_parameters_repeat1, + STATE(3148), 2, sym_line_comment, sym_block_comment, - ACTIONS(6652), 3, - anon_sym_SEMI, + [91079] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5031), 1, anon_sym_RBRACE, + ACTIONS(6707), 1, anon_sym_COMMA, - [90009] = 4, + STATE(2906), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3149), 2, + sym_line_comment, + sym_block_comment, + [91099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3122), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6709), 1, + anon_sym_SEMI, + ACTIONS(6711), 1, + anon_sym_RBRACK, + STATE(3150), 2, sym_line_comment, sym_block_comment, - ACTIONS(6654), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90025] = 5, + [91119] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 2, + ACTIONS(5093), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3123), 2, + ACTIONS(6713), 1, + anon_sym_SEMI, + STATE(683), 1, + sym_declaration_list, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [90043] = 6, + [91139] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_LT2, - ACTIONS(6658), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3124), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6715), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_where_clause, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [90063] = 6, + [91159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3122), 1, - anon_sym_RPAREN, - ACTIONS(6660), 1, + ACTIONS(6719), 1, + anon_sym_COLON, + ACTIONS(6717), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2634), 1, - aux_sym_slice_pattern_repeat1, - STATE(3125), 2, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [90083] = 6, + [91177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(6662), 1, + ACTIONS(6721), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + STATE(3154), 2, + sym_line_comment, + sym_block_comment, + [91197] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6723), 1, anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(3126), 2, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [90103] = 4, + [91217] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3127), 2, + ACTIONS(6725), 1, + anon_sym_move, + STATE(232), 1, + sym_closure_parameters, + STATE(3156), 2, sym_line_comment, sym_block_comment, - ACTIONS(6664), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90119] = 6, + [91237] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5719), 1, - anon_sym_RPAREN, - ACTIONS(5721), 1, + ACTIONS(4859), 1, + anon_sym_GT, + ACTIONS(6705), 1, anon_sym_COMMA, - STATE(2867), 1, - aux_sym_parameters_repeat1, - STATE(3128), 2, + STATE(3083), 1, + aux_sym_type_parameters_repeat1, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [90139] = 4, + [91257] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3129), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6727), 1, + anon_sym_SEMI, + STATE(757), 1, + sym_declaration_list, + STATE(3158), 2, sym_line_comment, sym_block_comment, - ACTIONS(6666), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90155] = 6, + [91277] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6668), 1, - anon_sym_EQ, - STATE(3731), 1, - sym_where_clause, - STATE(3130), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6729), 1, + anon_sym_SEMI, + STATE(657), 1, + sym_declaration_list, + STATE(3159), 2, sym_line_comment, sym_block_comment, - [90175] = 4, + [91297] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3131), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6731), 1, + anon_sym_SEMI, + STATE(759), 1, + sym_declaration_list, + STATE(3160), 2, sym_line_comment, sym_block_comment, - ACTIONS(6670), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [91317] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6733), 1, + anon_sym_GT, + ACTIONS(6735), 1, anon_sym_COMMA, - [90191] = 4, + STATE(2893), 1, + aux_sym_type_parameters_repeat1, + STATE(3161), 2, + sym_line_comment, + sym_block_comment, + [91337] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3132), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6737), 1, + anon_sym_SEMI, + STATE(1381), 1, + sym_declaration_list, + STATE(3162), 2, sym_line_comment, sym_block_comment, - ACTIONS(6672), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90207] = 6, + [91357] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5603), 1, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(4278), 1, anon_sym_COMMA, - STATE(3016), 1, - aux_sym_parameters_repeat1, - STATE(3133), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(3163), 2, sym_line_comment, sym_block_comment, - [90227] = 6, + [91377] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - anon_sym_RBRACE, - ACTIONS(6674), 1, - anon_sym_COMMA, - STATE(3115), 1, - aux_sym_struct_pattern_repeat1, - STATE(3134), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6739), 1, + anon_sym_SEMI, + STATE(3596), 1, + sym_where_clause, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [90247] = 6, + [91397] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_LT2, - ACTIONS(6676), 1, + ACTIONS(6741), 1, anon_sym_for, - STATE(2008), 1, + STATE(2031), 1, sym_type_arguments, - STATE(3135), 2, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [90267] = 6, + [91417] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3288), 1, + anon_sym_RPAREN, + ACTIONS(6743), 1, + anon_sym_COMMA, + STATE(2990), 1, + aux_sym_tuple_type_repeat1, + STATE(3166), 2, + sym_line_comment, + sym_block_comment, + [91437] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5071), 1, anon_sym_where, - ACTIONS(6678), 1, + ACTIONS(6745), 1, anon_sym_SEMI, - STATE(3694), 1, + STATE(3592), 1, sym_where_clause, - STATE(3136), 2, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [90287] = 6, + [91457] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6680), 1, - anon_sym_GT, - ACTIONS(6682), 1, - anon_sym_COMMA, - STATE(2882), 1, - aux_sym_use_bounds_repeat1, - STATE(3137), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(5158), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [90307] = 6, + [91477] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, - anon_sym_GT, - ACTIONS(6686), 1, + ACTIONS(6747), 1, + anon_sym_RBRACE, + ACTIONS(6749), 1, anon_sym_COMMA, - STATE(2890), 1, - aux_sym_use_bounds_repeat1, - STATE(3138), 2, + STATE(2903), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [90327] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [91497] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, - anon_sym_move, - STATE(246), 1, - sym_closure_parameters, - STATE(3139), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6751), 1, + anon_sym_SEMI, + STATE(3520), 1, + sym_where_clause, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [90347] = 6, + [91517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5919), 1, - anon_sym_GT, - ACTIONS(6690), 1, - anon_sym_COMMA, - STATE(2926), 1, - aux_sym_use_bounds_repeat1, - STATE(3140), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + ACTIONS(6753), 1, + anon_sym_SEMI, + STATE(1421), 1, + sym_declaration_list, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [90367] = 5, + [91537] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 1, - anon_sym_COLON, - ACTIONS(6692), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3141), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6755), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [90385] = 4, + [91557] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3142), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - ACTIONS(6696), 3, + ACTIONS(6757), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [90401] = 6, + [91573] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6698), 1, - sym_identifier, - ACTIONS(6700), 1, - anon_sym_ref, - ACTIONS(6702), 1, - sym_mutable_specifier, - STATE(3143), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6759), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [90421] = 6, + [91593] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6706), 1, - anon_sym_EQ, - STATE(3144), 2, + ACTIONS(6761), 1, + anon_sym_RBRACE, + ACTIONS(6763), 1, + anon_sym_COMMA, + STATE(3175), 3, sym_line_comment, sym_block_comment, - [90441] = 6, + aux_sym_enum_variant_list_repeat2, + [91611] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6708), 1, - anon_sym_SEMI, - STATE(1170), 1, - sym_declaration_list, - STATE(3145), 2, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6766), 1, + anon_sym_EQ, + STATE(3765), 1, + sym_where_clause, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [90461] = 6, + [91631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(6770), 1, + anon_sym_EQ, + ACTIONS(6768), 2, anon_sym_RBRACE, - ACTIONS(6710), 1, anon_sym_COMMA, - STATE(2897), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3146), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [90481] = 6, + [91649] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, - anon_sym_GT, - ACTIONS(6712), 1, - anon_sym_COMMA, - STATE(2926), 1, - aux_sym_use_bounds_repeat1, - STATE(3147), 2, + ACTIONS(4672), 1, + anon_sym_LT2, + ACTIONS(6772), 1, + anon_sym_for, + STATE(2031), 1, + sym_type_arguments, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [90501] = 6, + [91669] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6714), 1, + ACTIONS(5081), 1, anon_sym_RBRACE, - ACTIONS(6716), 1, + ACTIONS(6774), 1, anon_sym_COMMA, - STATE(2900), 1, + STATE(3175), 1, aux_sym_enum_variant_list_repeat2, - STATE(3148), 2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [90521] = 6, + [91689] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5087), 1, - anon_sym_RBRACE, - ACTIONS(6718), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3149), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6776), 1, + anon_sym_SEMI, + STATE(778), 1, + sym_declaration_list, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [90541] = 6, + [91709] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(6348), 1, - anon_sym_GT, - STATE(3258), 1, - sym_lifetime, - STATE(3150), 2, + ACTIONS(6778), 1, + sym_identifier, + ACTIONS(6780), 1, + anon_sym_ref, + ACTIONS(6782), 1, + sym_mutable_specifier, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [90561] = 6, + [91729] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(6720), 1, - anon_sym_SEMI, - ACTIONS(6722), 1, + ACTIONS(5071), 1, + anon_sym_where, + ACTIONS(6784), 1, anon_sym_EQ, - STATE(3151), 2, + STATE(3577), 1, + sym_where_clause, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [90581] = 4, + [91749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3152), 2, + STATE(3183), 2, sym_line_comment, sym_block_comment, - ACTIONS(6724), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90597] = 6, + ACTIONS(5029), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91765] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 1, - anon_sym_RBRACE, - ACTIONS(6728), 1, + ACTIONS(959), 1, + anon_sym_RBRACK, + ACTIONS(4304), 1, anon_sym_COMMA, - STATE(2978), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3153), 2, + STATE(2759), 1, + aux_sym_arguments_repeat1, + STATE(3184), 2, sym_line_comment, sym_block_comment, - [90617] = 6, + [91785] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_GT, - ACTIONS(6730), 1, + ACTIONS(1836), 1, + anon_sym_RPAREN, + ACTIONS(6786), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, - STATE(3154), 2, + STATE(2956), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [90637] = 6, + [91805] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3116), 1, - anon_sym_RPAREN, - ACTIONS(6732), 1, + ACTIONS(3154), 1, + anon_sym_RBRACK, + ACTIONS(6788), 1, anon_sym_COMMA, - STATE(2634), 1, + STATE(2742), 1, aux_sym_slice_pattern_repeat1, - STATE(3155), 2, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [90657] = 6, + [91825] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6734), 1, - anon_sym_RBRACE, - ACTIONS(6736), 1, - anon_sym_COMMA, - STATE(3048), 1, - aux_sym_struct_pattern_repeat1, - STATE(3156), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + ACTIONS(6790), 1, + anon_sym_SEMI, + STATE(566), 1, + sym_declaration_list, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [90677] = 6, + [91845] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, - sym_identifier, - ACTIONS(6740), 1, - anon_sym_await, - ACTIONS(6742), 1, - sym_integer_literal, - STATE(3157), 2, + ACTIONS(6144), 1, + anon_sym_GT, + ACTIONS(6792), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [90697] = 5, + [91865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6744), 1, - anon_sym_in, - STATE(3158), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6796), 1, + anon_sym_EQ, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [90714] = 5, + [91882] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - STATE(1688), 1, - sym_parameters, - STATE(3159), 2, + ACTIONS(6798), 1, + anon_sym_RPAREN, + ACTIONS(6800), 1, + anon_sym_COLON_COLON, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [90731] = 5, + [91899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_COLON, - STATE(2487), 1, - sym_trait_bounds, - STATE(3160), 2, + ACTIONS(6802), 1, + anon_sym_RPAREN, + ACTIONS(6804), 1, + anon_sym_COLON_COLON, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [90748] = 5, + [91916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4855), 1, - anon_sym_COLON_COLON, - STATE(3161), 2, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_enum_variant_list, + STATE(3192), 2, sym_line_comment, sym_block_comment, - [90765] = 5, + [91933] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(982), 1, - sym_type_parameters, - STATE(3162), 2, + STATE(234), 1, + sym_closure_parameters, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [90782] = 5, + [91950] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - STATE(1297), 1, - sym_parameters, - STATE(3163), 2, + ACTIONS(5414), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [90799] = 4, + [91965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3390), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3164), 2, + ACTIONS(6802), 1, + anon_sym_RPAREN, + ACTIONS(6806), 1, + anon_sym_COLON_COLON, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [90814] = 5, + [91982] = 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(3165), 2, + ACTIONS(5069), 1, + anon_sym_LT, + STATE(970), 1, + sym_type_parameters, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [90831] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(221), 1, - sym_closure_parameters, - STATE(3166), 2, + ACTIONS(6802), 1, + anon_sym_RPAREN, + ACTIONS(6808), 1, + anon_sym_COLON_COLON, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [90848] = 4, + [92016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3167), 2, + ACTIONS(5968), 1, + sym_identifier, + ACTIONS(5970), 1, + sym_super, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [90863] = 5, + [92033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6752), 1, + ACTIONS(5930), 2, sym_identifier, - ACTIONS(6754), 1, - sym_mutable_specifier, - STATE(3168), 2, + sym_super, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [90880] = 5, + [92048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5891), 1, + ACTIONS(6810), 1, sym_identifier, - ACTIONS(5893), 1, + ACTIONS(6812), 1, sym_super, - STATE(3169), 2, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [90897] = 4, + [92065] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5899), 2, + ACTIONS(6814), 1, sym_identifier, + ACTIONS(6816), 1, sym_super, - STATE(3170), 2, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [90912] = 5, + [92082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_identifier, - ACTIONS(6758), 1, - sym_super, - STATE(3171), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, + anon_sym_COLON, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [90929] = 5, + [92099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5411), 1, - anon_sym_LBRACE, - STATE(1304), 1, - sym_enum_variant_list, - STATE(3172), 2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5807), 1, + sym_identifier, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [90946] = 5, + [92116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(6818), 1, sym_identifier, - ACTIONS(6762), 1, + ACTIONS(6820), 1, sym_super, - STATE(3173), 2, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [90963] = 5, + [92133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5471), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_enum_variant_list, - STATE(3174), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(915), 1, + sym_type_parameters, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [90980] = 5, + [92150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3175), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_field_declaration_list, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [90997] = 5, + [92167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6766), 1, - sym_super, - STATE(3176), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1175), 1, + sym_declaration_list, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [91014] = 5, + [92184] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6768), 1, - anon_sym_EQ, - STATE(3177), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + STATE(1702), 1, + sym_parameters, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [91031] = 4, + [92201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3178), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_declaration_list, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [91046] = 5, + [92218] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(906), 1, - sym_type_parameters, - STATE(3179), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5755), 1, + anon_sym_COLON, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [91063] = 5, + [92235] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_field_declaration_list, - STATE(3180), 2, + STATE(236), 1, + sym_closure_parameters, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [91080] = 5, + [92252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1355), 1, - sym_field_declaration_list, - STATE(3181), 2, + ACTIONS(6824), 2, + sym_identifier, + sym_super, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [91097] = 5, + [92267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_declaration_list, - STATE(3182), 2, + ACTIONS(6820), 2, + sym_identifier, + sym_super, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [91114] = 5, + [92282] = 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(3183), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1241), 1, + sym_declaration_list, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [91131] = 5, + [92299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, - anon_sym_SEMI, - ACTIONS(6772), 1, - anon_sym_EQ, - STATE(3184), 2, + ACTIONS(5164), 1, + anon_sym_COLON, + STATE(2550), 1, + sym_trait_bounds, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [91148] = 4, + [92316] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 2, - sym_identifier, - sym_super, - STATE(3185), 2, + ACTIONS(3418), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [91163] = 4, + [92331] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6776), 2, - anon_sym_RPAREN, + ACTIONS(6510), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3186), 2, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [91178] = 5, + [92346] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(1396), 1, - sym_field_declaration_list, - STATE(3187), 2, + STATE(1249), 1, + sym_declaration_list, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [91195] = 5, + [92363] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5272), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3188), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1250), 1, + sym_declaration_list, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [91212] = 4, + [92380] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 2, + ACTIONS(6826), 2, sym_identifier, sym_super, - STATE(3189), 2, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [91227] = 5, + [92395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6780), 1, - anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_as, - STATE(3190), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + STATE(1658), 1, + sym_parameters, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [91244] = 5, + [92412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4843), 1, - anon_sym_COLON_COLON, - STATE(3191), 2, + ACTIONS(3576), 1, + anon_sym_LBRACE, + STATE(1535), 1, + sym_field_initializer_list, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [91261] = 5, + [92429] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - anon_sym_SEMI, - ACTIONS(6786), 1, - anon_sym_EQ, - STATE(3192), 2, + STATE(224), 1, + sym_closure_parameters, + STATE(3223), 2, + sym_line_comment, + sym_block_comment, + [92446] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5898), 1, + sym_identifier, + STATE(3224), 2, + sym_line_comment, + sym_block_comment, + [92463] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6484), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [91278] = 5, + [92478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - STATE(544), 1, - sym_declaration_list, - STATE(3193), 2, + STATE(1184), 1, + sym_field_declaration_list, + STATE(3226), 2, + sym_line_comment, + sym_block_comment, + [92495] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_enum_variant_list, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [91295] = 5, + [92512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - STATE(1670), 1, + STATE(1392), 1, sym_parameters, - STATE(3194), 2, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [91312] = 5, + [92529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5272), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, + ACTIONS(6828), 1, anon_sym_SEMI, - STATE(3195), 2, + ACTIONS(6830), 1, + anon_sym_as, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [91329] = 4, + [92546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 2, - sym_identifier, - sym_super, - STATE(3196), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1268), 1, + sym_field_declaration_list, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [91344] = 5, + [92563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(697), 1, - sym_field_declaration_list, - STATE(3197), 2, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6834), 1, + anon_sym_COLON_COLON, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [91361] = 4, + [92580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 2, - sym_float_literal, - sym_integer_literal, - STATE(3198), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1270), 1, + sym_field_declaration_list, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [91376] = 4, + [92597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3199), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1273), 1, + sym_declaration_list, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [91391] = 5, + [92614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(6613), 1, - anon_sym_for, - STATE(3200), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1192), 1, + sym_declaration_list, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [91408] = 5, + [92631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_BANG, - ACTIONS(6790), 1, - anon_sym_COLON_COLON, - STATE(3201), 2, + ACTIONS(5589), 1, + sym_super, + ACTIONS(6836), 1, + sym_identifier, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [91425] = 5, + [92648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3202), 2, + ACTIONS(6838), 1, + sym_identifier, + ACTIONS(6840), 1, + sym_super, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [91442] = 5, + [92665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, + ACTIONS(6842), 2, anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3203), 2, + anon_sym_COMMA, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [91459] = 5, + [92680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5366), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3204), 2, + ACTIONS(5589), 1, + sym_super, + ACTIONS(6844), 1, + sym_identifier, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [91476] = 5, + [92697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5471), 1, - anon_sym_LBRACE, - STATE(771), 1, - sym_enum_variant_list, - STATE(3205), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5099), 1, + anon_sym_for, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [91493] = 5, + [92714] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(922), 1, - sym_type_parameters, - STATE(3206), 2, + STATE(233), 1, + sym_closure_parameters, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [91510] = 5, + [92731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(6792), 1, + ACTIONS(6846), 1, sym_identifier, - STATE(3207), 2, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [91527] = 5, + [92748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 1, - sym_super, - ACTIONS(6794), 1, - sym_identifier, - STATE(3208), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1518), 1, + sym_type_arguments, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [91544] = 4, + [92765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3209), 2, + ACTIONS(6848), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [91559] = 4, + [92780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 2, - sym_identifier, + ACTIONS(5676), 1, sym_super, - STATE(3210), 2, + ACTIONS(6846), 1, + sym_identifier, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [91574] = 5, + [92797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - STATE(703), 1, - sym_declaration_list, - STATE(3211), 2, + STATE(671), 1, + sym_field_declaration_list, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [91591] = 4, + [92814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 2, - sym_identifier, - sym_super, - STATE(3212), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_enum_variant_list, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [91606] = 5, + [92831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6800), 1, - sym_identifier, - STATE(3213), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(577), 1, + sym_field_declaration_list, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [91623] = 5, + [92848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, - sym_identifier, - ACTIONS(6804), 1, - sym_super, - STATE(3214), 2, + ACTIONS(6850), 1, + anon_sym_STAR_SLASH, + ACTIONS(6852), 1, + sym__block_comment_content, + STATE(3248), 2, + sym_line_comment, + sym_block_comment, + [92865] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6319), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [91640] = 5, + [92880] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(222), 1, + STATE(248), 1, sym_closure_parameters, - STATE(3215), 2, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [91657] = 5, + [92897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(587), 1, - sym_declaration_list, - STATE(3216), 2, + ACTIONS(5589), 1, + sym_super, + ACTIONS(6854), 1, + sym_identifier, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [91674] = 5, + [92914] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - STATE(3258), 1, - sym_lifetime, - STATE(3217), 2, + ACTIONS(5970), 2, + sym_identifier, + sym_super, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [91691] = 4, + [92929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3218), 2, + ACTIONS(6856), 1, + anon_sym_SEMI, + ACTIONS(6858), 1, + anon_sym_EQ, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [91706] = 5, + [92946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 1, + ACTIONS(6816), 1, sym_super, - ACTIONS(6802), 1, + ACTIONS(6860), 1, sym_identifier, - STATE(3219), 2, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [91723] = 5, + [92963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(6808), 1, + ACTIONS(5898), 1, sym_identifier, - STATE(3220), 2, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [91740] = 5, + [92980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(6146), 1, - anon_sym_for, - STATE(3221), 2, + ACTIONS(6820), 1, + sym_super, + ACTIONS(6838), 1, + sym_identifier, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [91757] = 4, + [92997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3222), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1200), 1, + sym_field_declaration_list, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [91772] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(223), 1, - sym_closure_parameters, - STATE(3223), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_declaration_list, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [91789] = 4, + [93031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6812), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3224), 2, + ACTIONS(5676), 1, + sym_super, + ACTIONS(6862), 1, + sym_identifier, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [91804] = 5, + [93048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6814), 1, - sym_identifier, - ACTIONS(6816), 1, - sym_mutable_specifier, - STATE(3225), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(6864), 1, + anon_sym_in, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [91821] = 4, + [93065] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 2, - sym_identifier, - sym_super, - STATE(3226), 2, + STATE(249), 1, + sym_closure_parameters, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [91836] = 5, + [93082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 1, - sym_super, - ACTIONS(6818), 1, - sym_identifier, - STATE(3227), 2, + ACTIONS(6866), 1, + anon_sym_LBRACK, + ACTIONS(6868), 1, + anon_sym_BANG, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [91853] = 5, + [93099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5909), 1, - sym_identifier, - STATE(3228), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(579), 1, + sym_declaration_list, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [91870] = 5, + [93116] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - sym_super, - ACTIONS(6820), 1, - sym_identifier, - STATE(3229), 2, + ACTIONS(6870), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [91887] = 4, + [93131] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 2, - sym_identifier, - sym_super, - STATE(3230), 2, + ACTIONS(6872), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [91902] = 5, + [93146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_field_declaration_list, - STATE(3231), 2, + ACTIONS(6545), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [91919] = 5, + [93161] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - STATE(1329), 1, - sym_parameters, - STATE(3232), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1203), 1, + sym_field_declaration_list, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [91936] = 5, + [93178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(632), 1, - sym_field_declaration_list, - STATE(3233), 2, + ACTIONS(6874), 1, + anon_sym_SEMI, + ACTIONS(6876), 1, + anon_sym_as, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [91953] = 5, + [93195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LBRACK, - ACTIONS(6824), 1, - anon_sym_BANG, - STATE(3234), 2, + ACTIONS(6816), 1, + sym_super, + ACTIONS(6878), 1, + sym_identifier, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [91970] = 5, + [93212] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6826), 1, + ACTIONS(5676), 2, sym_identifier, - STATE(3235), 2, + sym_super, + STATE(3270), 2, sym_line_comment, sym_block_comment, - [91987] = 4, + [93227] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3236), 2, + STATE(220), 1, + sym_closure_parameters, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [92002] = 5, + [93244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5411), 1, - anon_sym_LBRACE, - STATE(1350), 1, - sym_enum_variant_list, - STATE(3237), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + STATE(3027), 1, + sym_lifetime, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [92019] = 5, + [93261] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, - anon_sym_in, - STATE(3238), 2, + ACTIONS(6564), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [92036] = 5, + [93276] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2274), 1, - sym_parameters, - STATE(3239), 2, + STATE(247), 1, + sym_closure_parameters, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [92053] = 5, + [93293] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(545), 1, - sym_declaration_list, - STATE(3240), 2, + ACTIONS(6826), 1, + sym_super, + ACTIONS(6880), 1, + sym_identifier, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [92070] = 5, + [93310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(3870), 1, - anon_sym_COLON, - STATE(3241), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(949), 1, + sym_type_parameters, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [92087] = 5, + [93327] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(226), 1, + STATE(256), 1, sym_closure_parameters, - STATE(3242), 2, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [92104] = 5, + [93344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 1, - anon_sym_RPAREN, - ACTIONS(6832), 1, - anon_sym_COLON_COLON, - STATE(3243), 2, + ACTIONS(6882), 1, + sym_identifier, + ACTIONS(6884), 1, + sym_super, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [92121] = 5, + [93361] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_COLON_COLON, - STATE(3244), 2, + ACTIONS(6886), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [92138] = 5, + [93376] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, - STATE(3245), 2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [92155] = 5, + [93393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - sym_super, ACTIONS(6840), 1, + sym_super, + ACTIONS(6888), 1, sym_identifier, - STATE(3246), 2, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [92172] = 5, + [93410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, - anon_sym_RPAREN, - ACTIONS(6842), 1, - anon_sym_COLON_COLON, - STATE(3247), 2, + ACTIONS(6890), 1, + anon_sym_SEMI, + ACTIONS(6892), 1, + anon_sym_EQ, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [92189] = 5, + [93427] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(227), 1, + STATE(243), 1, sym_closure_parameters, - STATE(3248), 2, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [92206] = 5, + [93444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5471), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(709), 1, - sym_enum_variant_list, - STATE(3249), 2, + STATE(732), 1, + sym_declaration_list, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [92223] = 5, + [93461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 1, - sym_super, - ACTIONS(6844), 1, - sym_identifier, - STATE(3250), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(585), 1, + sym_field_declaration_list, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [92240] = 5, + [93478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5950), 1, - sym_identifier, - STATE(3251), 2, + ACTIONS(6804), 1, + anon_sym_COLON_COLON, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [92257] = 5, + [93495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(6846), 1, + ACTIONS(6896), 1, sym_identifier, - STATE(3252), 2, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [92274] = 5, + [93512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1124), 1, - sym_field_declaration_list, - STATE(3253), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(950), 1, + sym_type_parameters, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [92291] = 5, + [93529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_declaration_list, - STATE(3254), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(6586), 1, + anon_sym_for, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [92308] = 5, + [93546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1129), 1, - sym_declaration_list, - STATE(3255), 2, + ACTIONS(6816), 1, + sym_super, + ACTIONS(6898), 1, + sym_identifier, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [92325] = 4, + [93563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5489), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3256), 2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5918), 1, + sym_identifier, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [92340] = 4, + [93580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6848), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3257), 2, + ACTIONS(6840), 1, + sym_super, + ACTIONS(6900), 1, + sym_identifier, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [92355] = 4, + [93597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6222), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3258), 2, + ACTIONS(6806), 1, + anon_sym_COLON_COLON, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [92370] = 5, + [93614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 1, - anon_sym_SEMI, - ACTIONS(6852), 1, - anon_sym_EQ, - STATE(3259), 2, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(557), 1, + sym_enum_variant_list, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [92387] = 5, + [93631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1162), 1, - sym_field_declaration_list, - STATE(3260), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6904), 1, + anon_sym_RPAREN, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [92404] = 4, + [93648] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 2, - sym_identifier, - sym_super, - STATE(3261), 2, + ACTIONS(6011), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3296), 2, sym_line_comment, sym_block_comment, - [92419] = 4, + [93663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3262), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1152), 1, + sym_enum_variant_list, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [92434] = 5, + [93680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - sym_super, - ACTIONS(6856), 1, - sym_identifier, - STATE(3263), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + ACTIONS(4993), 1, + anon_sym_BANG, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [92451] = 5, + [93697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1173), 1, - sym_declaration_list, - STATE(3264), 2, + ACTIONS(6906), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [92468] = 5, + [93712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 1, - sym_super, - ACTIONS(6858), 1, + ACTIONS(6908), 1, sym_identifier, - STATE(3265), 2, + ACTIONS(6910), 1, + sym_super, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [92485] = 5, + [93729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 1, + ACTIONS(5676), 1, sym_super, - ACTIONS(5927), 1, + ACTIONS(6912), 1, sym_identifier, - STATE(3266), 2, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [92502] = 5, + [93746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, + ACTIONS(6816), 1, sym_super, - ACTIONS(6860), 1, + ACTIONS(6914), 1, sym_identifier, - STATE(3267), 2, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [92519] = 4, + [93763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6246), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3268), 2, + ACTIONS(5930), 1, + sym_super, + ACTIONS(5980), 1, + sym_identifier, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [92534] = 5, + [93780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 1, + ACTIONS(6824), 1, sym_super, - ACTIONS(5909), 1, + ACTIONS(6916), 1, sym_identifier, - STATE(3269), 2, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [92551] = 5, + [93797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5411), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(1185), 1, - sym_enum_variant_list, - STATE(3270), 2, + STATE(1357), 1, + sym_declaration_list, + STATE(3305), 2, sym_line_comment, sym_block_comment, - [92568] = 4, + [93814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6862), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3271), 2, + ACTIONS(6808), 1, + anon_sym_COLON_COLON, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [92583] = 5, + [93831] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1197), 1, - sym_field_declaration_list, - STATE(3272), 2, + STATE(255), 1, + sym_closure_parameters, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [92600] = 5, + [93848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_field_declaration_list, - STATE(3273), 2, + ACTIONS(5676), 1, + sym_super, + ACTIONS(6880), 1, + sym_identifier, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [92617] = 5, + [93865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(4030), 1, - anon_sym_COLON, - STATE(3274), 2, + ACTIONS(6816), 1, + sym_super, + ACTIONS(6844), 1, + sym_identifier, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [92634] = 4, + [93882] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6397), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3275), 2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5833), 1, + sym_identifier, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [92649] = 5, + [93899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6864), 1, - anon_sym_SEMI, - ACTIONS(6866), 1, - anon_sym_as, - STATE(3276), 2, + ACTIONS(6820), 1, + sym_super, + ACTIONS(6888), 1, + sym_identifier, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [92666] = 5, + [93916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 1, - sym_identifier, - ACTIONS(6870), 1, + ACTIONS(6826), 1, sym_super, - STATE(3277), 2, + ACTIONS(6918), 1, + sym_identifier, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [92683] = 5, + [93933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 1, - sym_super, - ACTIONS(6872), 1, + ACTIONS(5829), 1, sym_identifier, - STATE(3278), 2, + ACTIONS(5831), 1, + sym_super, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [92700] = 5, + [93950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5895), 1, - sym_identifier, - ACTIONS(5899), 1, + ACTIONS(6840), 1, sym_super, - STATE(3279), 2, + ACTIONS(6920), 1, + sym_identifier, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [92717] = 5, + [93967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(6874), 1, + ACTIONS(6922), 1, sym_identifier, - STATE(3280), 2, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [92734] = 5, + [93984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, + ACTIONS(5831), 1, sym_super, - ACTIONS(6876), 1, + ACTIONS(5886), 1, sym_identifier, - STATE(3281), 2, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [92751] = 4, + [94001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 2, + ACTIONS(6840), 1, + sym_super, + ACTIONS(6924), 1, sym_identifier, - sym_metavariable, - STATE(3282), 2, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [92766] = 5, + [94018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(712), 1, - sym_field_declaration_list, - STATE(3283), 2, + ACTIONS(6826), 1, + sym_super, + ACTIONS(6926), 1, + sym_identifier, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [92783] = 5, + [94035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5471), 1, - anon_sym_LBRACE, - STATE(611), 1, - sym_enum_variant_list, - STATE(3284), 2, + ACTIONS(5831), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [92800] = 5, + [94052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACE, - STATE(776), 1, - sym_field_declaration_list, - STATE(3285), 2, + ACTIONS(6840), 1, + sym_super, + ACTIONS(6928), 1, + sym_identifier, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [92817] = 5, + [94069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 1, + ACTIONS(5676), 1, sym_super, - ACTIONS(6840), 1, + ACTIONS(6926), 1, sym_identifier, - STATE(3286), 2, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [92834] = 5, + [94086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 1, + ACTIONS(5306), 1, sym_super, - ACTIONS(6800), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(3287), 2, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [92851] = 5, + [94103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 1, + ACTIONS(6820), 1, sym_super, - ACTIONS(5950), 1, + ACTIONS(6928), 1, sym_identifier, - STATE(3288), 2, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [92868] = 5, + [94120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - sym_super, - ACTIONS(6846), 1, + ACTIONS(5306), 2, sym_identifier, - STATE(3289), 2, + sym_super, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [92885] = 5, + [94135] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - sym_super, - ACTIONS(6880), 1, - sym_identifier, - STATE(3290), 2, + ACTIONS(4821), 1, + anon_sym_BANG, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [92902] = 5, + [94152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5948), 1, - sym_identifier, - STATE(3291), 2, + ACTIONS(4821), 1, + anon_sym_BANG, + ACTIONS(4937), 1, + anon_sym_COLON_COLON, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [92919] = 5, + [94169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, - sym_super, - ACTIONS(6882), 1, - sym_identifier, - STATE(3292), 2, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(1752), 1, + sym_field_initializer_list, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [92936] = 5, + [94186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - sym_super, - ACTIONS(6884), 1, - sym_identifier, - STATE(3293), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2456), 1, + sym_parameters, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [92953] = 5, + [94203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 1, - sym_super, - ACTIONS(5978), 1, - sym_identifier, - STATE(3294), 2, + ACTIONS(5428), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [92970] = 5, + [94220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, - sym_super, - ACTIONS(6886), 1, - sym_identifier, - STATE(3295), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1366), 1, + sym_declaration_list, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [92987] = 5, + [94237] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - sym_super, - ACTIONS(6888), 1, - sym_identifier, - STATE(3296), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1367), 1, + sym_declaration_list, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [93004] = 5, + [94254] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 1, + ACTIONS(6820), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(6930), 1, sym_identifier, - STATE(3297), 2, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [93021] = 5, + [94271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, - sym_super, - ACTIONS(6890), 1, - sym_identifier, - STATE(3298), 2, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(6932), 1, + anon_sym_COLON_COLON, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [93038] = 5, + [94288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 1, - sym_super, - ACTIONS(6888), 1, - sym_identifier, - STATE(3299), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6934), 1, + anon_sym_RBRACE, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [93055] = 5, + [94305] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3300), 2, + ACTIONS(6936), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [93072] = 5, + [94320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - sym_super, - ACTIONS(6890), 1, - sym_identifier, - STATE(3301), 2, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(3674), 1, + anon_sym_COLON_COLON, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [93089] = 5, + [94337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(777), 1, - sym_declaration_list, - STATE(3302), 2, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(3676), 1, + anon_sym_COLON_COLON, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [93106] = 4, + [94354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6293), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3303), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(590), 1, + sym_declaration_list, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [93121] = 5, + [94371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6892), 1, - anon_sym_RBRACE, - STATE(3304), 2, + ACTIONS(6938), 1, + anon_sym_BANG, + ACTIONS(6940), 1, + anon_sym_COLON_COLON, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [93138] = 5, + [94388] = 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(3305), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_field_declaration_list, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [93155] = 5, + [94405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2299), 1, - sym_parameters, - STATE(3306), 2, + ACTIONS(5589), 1, + sym_super, + ACTIONS(6942), 1, + sym_identifier, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [93172] = 4, + [94422] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3307), 2, + ACTIONS(6944), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [93187] = 4, + [94437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6898), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3308), 2, + ACTIONS(6946), 1, + sym_identifier, + ACTIONS(6948), 1, + sym_mutable_specifier, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [93202] = 5, + [94454] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2476), 1, - sym_parameters, - STATE(3309), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_declaration_list, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [93219] = 5, + [94471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2284), 1, - sym_parameters, - STATE(3310), 2, + ACTIONS(5524), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [93236] = 5, + [94486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(715), 1, - sym_field_declaration_list, - STATE(3311), 2, + STATE(741), 1, + sym_declaration_list, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [93253] = 5, + [94503] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, - anon_sym_LPAREN, - ACTIONS(6902), 1, - anon_sym_COLON_COLON, - STATE(3312), 2, + ACTIONS(6950), 2, + sym_float_literal, + sym_integer_literal, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [93270] = 5, + [94518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, + ACTIONS(6826), 1, sym_super, - ACTIONS(6820), 1, + ACTIONS(6952), 1, sym_identifier, - STATE(3313), 2, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [93287] = 5, + [94535] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6904), 1, - anon_sym_SEMI, - ACTIONS(6906), 1, - anon_sym_EQ, - STATE(3314), 2, + ACTIONS(6954), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [93304] = 5, + [94550] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6452), 1, - sym_identifier, - ACTIONS(6456), 1, + ACTIONS(6956), 2, + anon_sym_const, sym_mutable_specifier, - STATE(3315), 2, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [93321] = 4, + [94565] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3316), 2, + ACTIONS(6643), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [93336] = 5, + [94580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3532), 1, - anon_sym_PLUS, - ACTIONS(3584), 1, - anon_sym_COLON_COLON, - STATE(3317), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(742), 1, + sym_declaration_list, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [93353] = 5, + [94597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3532), 1, - anon_sym_PLUS, - ACTIONS(3586), 1, - anon_sym_COLON_COLON, - STATE(3318), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + STATE(1294), 1, + sym_parameters, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [93370] = 5, + [94614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, - anon_sym_BANG, - ACTIONS(6912), 1, - anon_sym_COLON_COLON, - STATE(3319), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(969), 1, + sym_type_parameters, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [93387] = 5, + [94631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6914), 1, + ACTIONS(6902), 1, anon_sym_SEMI, - ACTIONS(6916), 1, - anon_sym_as, - STATE(3320), 2, + ACTIONS(6958), 1, + anon_sym_RBRACE, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [93404] = 5, + [94648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5645), 1, - anon_sym_COLON, - ACTIONS(5647), 1, - anon_sym_PIPE, - STATE(3321), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2306), 1, + sym_parameters, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [93421] = 5, + [94665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_declaration_list, - STATE(3322), 2, + ACTIONS(6884), 2, + sym_identifier, + sym_super, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [93438] = 4, + [94680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6918), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3323), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(3810), 1, + anon_sym_COLON, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [93453] = 5, + [94697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6920), 1, - anon_sym_in, - STATE(3324), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(3814), 1, + anon_sym_COLON, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [93470] = 5, + [94714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6922), 1, - anon_sym_STAR_SLASH, - ACTIONS(6924), 1, - sym__block_comment_content, - STATE(3325), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2314), 1, + sym_parameters, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [93487] = 4, + [94731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3326), 2, + ACTIONS(4498), 1, + anon_sym_EQ_GT, + ACTIONS(6960), 1, + anon_sym_AMP_AMP, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [93502] = 5, + [94748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6928), 1, - anon_sym_EQ, - STATE(3327), 2, + ACTIONS(6605), 1, + anon_sym_EQ_GT, + ACTIONS(6960), 1, + anon_sym_AMP_AMP, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [93519] = 5, + [94765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(950), 1, - sym_type_parameters, - STATE(3328), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6904), 1, + anon_sym_RBRACK, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [93536] = 5, + [94782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(3882), 1, - anon_sym_COLON, - STATE(3329), 2, + ACTIONS(5342), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [93553] = 5, + [94799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - ACTIONS(3886), 1, - anon_sym_COLON, - STATE(3330), 2, + ACTIONS(6816), 2, + sym_identifier, + sym_super, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [93570] = 5, + [94814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2300), 1, - sym_parameters, - STATE(3331), 2, + ACTIONS(5342), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [93587] = 5, + [94831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, - anon_sym_LPAREN, - ACTIONS(6930), 1, - anon_sym_COLON_COLON, - STATE(3332), 2, + ACTIONS(5344), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3367), 2, + sym_line_comment, + sym_block_comment, + [94848] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5344), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [93604] = 4, + [94865] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6932), 2, - anon_sym_GT, + ACTIONS(6962), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3333), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [93619] = 5, + [94880] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(626), 1, - sym_declaration_list, - STATE(3334), 2, + STATE(219), 1, + sym_closure_parameters, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [93636] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(245), 1, - sym_closure_parameters, - STATE(3335), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6964), 1, + anon_sym_RBRACE, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [93653] = 5, + [94914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(5083), 1, - anon_sym_for, - STATE(3336), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(751), 1, + sym_field_declaration_list, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [93670] = 5, + [94931] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 1, - anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_as, - STATE(3337), 2, + ACTIONS(6966), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [93687] = 5, + [94946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5388), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3338), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(650), 1, + sym_declaration_list, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [93704] = 5, + [94963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_COLON_COLON, - ACTIONS(6938), 1, - anon_sym_RPAREN, - STATE(3339), 2, + ACTIONS(6968), 1, + sym_identifier, + ACTIONS(6970), 1, + sym_mutable_specifier, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [93721] = 5, + [94980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5388), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3340), 2, + ACTIONS(6972), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [93738] = 5, + [94995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(6255), 1, - anon_sym_for, - STATE(3341), 2, + ACTIONS(5306), 1, + sym_super, + ACTIONS(5811), 1, + sym_identifier, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [93755] = 5, + [95012] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3342), 2, + ACTIONS(5831), 2, + sym_identifier, + sym_super, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [93772] = 5, + [95027] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_COLON_COLON, - ACTIONS(6940), 1, - anon_sym_RPAREN, - STATE(3343), 2, + ACTIONS(6820), 1, + sym_super, + ACTIONS(6974), 1, + sym_identifier, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [93789] = 5, + [95044] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3344), 2, + ACTIONS(6976), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [93806] = 5, + [95059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 1, - sym_super, - ACTIONS(6942), 1, - sym_identifier, - STATE(3345), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2328), 1, + sym_parameters, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [93823] = 5, + [95076] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1418), 1, - sym_declaration_list, - STATE(3346), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6978), 1, + anon_sym_RPAREN, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [93840] = 5, + [95093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, - ACTIONS(6940), 1, - anon_sym_RPAREN, - STATE(3347), 2, + ACTIONS(6694), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [93857] = 5, + [95108] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1375), 1, - sym_declaration_list, - STATE(3348), 2, + ACTIONS(6980), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [93874] = 5, + [95123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1168), 1, - sym_declaration_list, - STATE(3349), 2, + ACTIONS(4184), 1, + anon_sym_LT2, + STATE(1874), 1, + sym_type_arguments, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [93891] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [95140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(252), 1, - sym_closure_parameters, - STATE(3350), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2332), 1, + sym_parameters, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [93908] = 5, + [95157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6902), 1, anon_sym_SEMI, - ACTIONS(6944), 1, - anon_sym_RPAREN, - STATE(3351), 2, + ACTIONS(6978), 1, + anon_sym_RBRACK, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [93925] = 5, + [95174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6842), 1, - anon_sym_COLON_COLON, - ACTIONS(6940), 1, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6982), 1, anon_sym_RPAREN, - STATE(3352), 2, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [93942] = 5, + [95191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6902), 1, anon_sym_SEMI, - ACTIONS(6944), 1, + ACTIONS(6982), 1, anon_sym_RBRACK, - STATE(3353), 2, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [93959] = 5, + [95208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6902), 1, anon_sym_SEMI, - ACTIONS(6946), 1, - anon_sym_RBRACE, - STATE(3354), 2, + ACTIONS(6984), 1, + anon_sym_RPAREN, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [93976] = 5, + [95225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5411), 1, - anon_sym_LBRACE, - STATE(1294), 1, - sym_enum_variant_list, - STATE(3355), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + ACTIONS(6984), 1, + anon_sym_RBRACK, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [93993] = 5, + [95242] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, - anon_sym_LBRACE, - STATE(1791), 1, - sym_field_initializer_list, - STATE(3356), 2, + ACTIONS(6040), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [94010] = 5, + [95257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5059), 1, anon_sym_LBRACE, - STATE(1311), 1, - sym_field_declaration_list, - STATE(3357), 2, + STATE(1123), 1, + sym_declaration_list, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [94027] = 5, + [95274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1316), 1, - sym_field_declaration_list, - STATE(3358), 2, + ACTIONS(6986), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [94044] = 5, + [95289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1322), 1, - sym_declaration_list, - STATE(3359), 2, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + STATE(3351), 1, + sym_lifetime, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [94061] = 5, + [95306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_LT2, - STATE(1440), 1, - sym_type_arguments, - STATE(3360), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6988), 1, + anon_sym_GT, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [94078] = 5, + [95323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2294), 1, - sym_parameters, - STATE(3361), 2, + ACTIONS(6816), 1, + sym_super, + ACTIONS(6854), 1, + sym_identifier, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [94095] = 5, + [95340] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6948), 1, - anon_sym_RPAREN, - STATE(3362), 2, + ACTIONS(6910), 2, + sym_identifier, + sym_super, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [94112] = 5, + [95355] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6950), 1, - anon_sym_RPAREN, - STATE(3363), 2, + ACTIONS(6990), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [94129] = 5, + [95370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6902), 1, anon_sym_SEMI, - ACTIONS(6950), 1, - anon_sym_RBRACK, - STATE(3364), 2, + ACTIONS(6992), 1, + anon_sym_RBRACE, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [94146] = 5, + [95387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6952), 1, - anon_sym_RPAREN, - STATE(3365), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2290), 1, + sym_parameters, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [94163] = 5, + [95404] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6952), 1, - anon_sym_RBRACK, - STATE(3366), 2, + ACTIONS(6994), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [94180] = 5, + [95419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6948), 1, - anon_sym_RBRACK, - STATE(3367), 2, + ACTIONS(5807), 1, + sym_identifier, + ACTIONS(5831), 1, + sym_super, + STATE(3403), 2, + sym_line_comment, + sym_block_comment, + [95436] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6818), 1, + sym_identifier, + ACTIONS(6840), 1, + sym_super, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [94197] = 5, + [95453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, + ACTIONS(3210), 1, anon_sym_PLUS, - ACTIONS(3902), 1, + ACTIONS(4074), 1, anon_sym_COLON, - STATE(3368), 2, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [94214] = 5, + [95470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6954), 1, - anon_sym_RBRACE, - STATE(3369), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2494), 1, + sym_parameters, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [94231] = 5, + [95487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4949), 1, - anon_sym_BANG, - STATE(3370), 2, + ACTIONS(5589), 2, + sym_identifier, + sym_super, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [94248] = 5, + [95502] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6956), 1, - sym_identifier, - STATE(3371), 2, + ACTIONS(6230), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [94265] = 4, + [95517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3372), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2319), 1, + sym_parameters, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [94280] = 4, + [95534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6960), 2, - sym_float_literal, - sym_integer_literal, - STATE(3373), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(6723), 1, + anon_sym_for, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [94295] = 5, + [95551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - sym_super, - ACTIONS(6962), 1, - sym_identifier, - STATE(3374), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(995), 1, + sym_type_parameters, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [94312] = 4, + [95568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 2, - sym_identifier, + ACTIONS(5306), 1, sym_super, - STATE(3375), 2, + ACTIONS(5996), 1, + sym_identifier, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [94327] = 4, + [95585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 2, - anon_sym_const, + ACTIONS(6332), 1, + sym_identifier, + ACTIONS(6336), 1, sym_mutable_specifier, - STATE(3376), 2, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [94342] = 5, + [95602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - STATE(2278), 1, + STATE(1333), 1, sym_parameters, - STATE(3377), 2, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [94359] = 4, + [95619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3378), 2, + ACTIONS(5589), 1, + sym_super, + ACTIONS(6814), 1, + sym_identifier, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [94374] = 5, + [95636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - STATE(3085), 1, - sym_lifetime, - STATE(3379), 2, + ACTIONS(6996), 1, + anon_sym_LPAREN, + ACTIONS(6998), 1, + anon_sym_COLON_COLON, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [94391] = 5, + [95653] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(920), 1, - sym_type_parameters, - STATE(3380), 2, + ACTIONS(7000), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [94408] = 4, + [95668] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3381), 2, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(4298), 1, + anon_sym_COLON_COLON, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [94423] = 5, + [95685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_LPAREN, - STATE(1221), 1, - sym_parameters, - STATE(3382), 2, + ACTIONS(3475), 1, + anon_sym_PLUS, + ACTIONS(4352), 1, + anon_sym_COLON_COLON, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [94440] = 4, + [95702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 2, - sym_identifier, - sym_metavariable, - STATE(3383), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(6940), 1, + anon_sym_COLON_COLON, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [94455] = 5, + [95719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - STATE(762), 1, - sym_declaration_list, - STATE(3384), 2, + STATE(690), 1, + sym_field_declaration_list, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [94472] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [95736] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(246), 1, - sym_closure_parameters, - STATE(3385), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(989), 1, + sym_type_parameters, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [94489] = 5, + [95753] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3548), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_field_initializer_list, - STATE(3386), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7002), 1, + anon_sym_in, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [94506] = 5, + [95770] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 1, - sym_super, - ACTIONS(6012), 1, - sym_identifier, - STATE(3387), 2, + STATE(232), 1, + sym_closure_parameters, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [94523] = 5, + [95787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4378), 1, - anon_sym_EQ_GT, - ACTIONS(6970), 1, - anon_sym_AMP_AMP, - STATE(3388), 2, + ACTIONS(6761), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [94540] = 5, + [95802] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - anon_sym_EQ_GT, - ACTIONS(6970), 1, - anon_sym_AMP_AMP, - STATE(3389), 2, + ACTIONS(7004), 2, + sym_float_literal, + sym_integer_literal, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [94557] = 5, + [95817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 1, - sym_super, - ACTIONS(6826), 1, - sym_identifier, - STATE(3390), 2, + ACTIONS(5396), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [94574] = 4, + [95834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3391), 2, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1348), 1, + sym_enum_variant_list, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [94589] = 4, + [95851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6356), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3392), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(6741), 1, + anon_sym_for, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [94604] = 5, + [95868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_LPAREN, - ACTIONS(6974), 1, - anon_sym_COLON_COLON, - STATE(3393), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7006), 1, + anon_sym_EQ, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [94621] = 5, + [95885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3532), 1, - anon_sym_PLUS, - ACTIONS(4320), 1, + ACTIONS(6832), 1, + anon_sym_LPAREN, + ACTIONS(7008), 1, anon_sym_COLON_COLON, - STATE(3394), 2, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [94638] = 5, + [95902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3532), 1, - anon_sym_PLUS, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - STATE(3395), 2, + ACTIONS(7010), 1, + sym_identifier, + ACTIONS(7012), 1, + sym_super, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [94655] = 5, + [95919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(7014), 1, anon_sym_BANG, - ACTIONS(6912), 1, + ACTIONS(7016), 1, anon_sym_COLON_COLON, - STATE(3396), 2, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [94672] = 5, + [95936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - STATE(1111), 1, - sym_declaration_list, - STATE(3397), 2, - sym_line_comment, - sym_block_comment, - [94689] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(218), 1, - sym_closure_parameters, - STATE(3398), 2, + STATE(620), 1, + sym_enum_variant_list, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [94706] = 4, + [95953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 2, + ACTIONS(6800), 1, + anon_sym_COLON_COLON, + ACTIONS(7018), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3399), 2, - sym_line_comment, - sym_block_comment, - [94721] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(972), 1, - sym_type_parameters, - STATE(3400), 2, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [94738] = 5, + [95970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1130), 1, - sym_declaration_list, - STATE(3401), 2, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5396), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [94755] = 5, + [95987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, + ACTIONS(5093), 1, anon_sym_LBRACE, - STATE(1131), 1, + STATE(658), 1, sym_declaration_list, - STATE(3402), 2, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [94772] = 4, + [96004] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 2, - sym_identifier, - sym_metavariable, - STATE(3403), 2, + ACTIONS(5402), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [94787] = 5, + [96021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, + ACTIONS(6832), 1, anon_sym_LPAREN, - ACTIONS(6978), 1, + ACTIONS(7020), 1, anon_sym_COLON_COLON, - STATE(3404), 2, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [94804] = 5, + [96038] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(6982), 1, + ACTIONS(7016), 1, anon_sym_COLON_COLON, - STATE(3405), 2, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [94821] = 5, + [96055] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(535), 1, - sym_declaration_list, - STATE(3406), 2, + STATE(244), 1, + sym_closure_parameters, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [94838] = 5, + [96072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, - anon_sym_LPAREN, - ACTIONS(6984), 1, - anon_sym_COLON_COLON, - STATE(3407), 2, + ACTIONS(5461), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_enum_variant_list, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [94855] = 5, + [96089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(7022), 1, + anon_sym_LBRACK, + ACTIONS(7024), 1, anon_sym_BANG, - ACTIONS(6982), 1, - anon_sym_COLON_COLON, - STATE(3408), 2, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [94872] = 5, + [96106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 1, - sym_super, - ACTIONS(5881), 1, + ACTIONS(7026), 2, sym_identifier, - STATE(3409), 2, + sym_metavariable, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [94889] = 5, + [96121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5067), 1, anon_sym_LBRACE, - STATE(763), 1, - sym_declaration_list, - STATE(3410), 2, + STATE(1402), 1, + sym_field_declaration_list, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [94906] = 5, + [96138] = 4, 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(3411), 2, + ACTIONS(7028), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [94923] = 5, + [96153] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 1, - anon_sym_LBRACK, - ACTIONS(6988), 1, - anon_sym_BANG, - STATE(3412), 2, + STATE(215), 1, + sym_closure_parameters, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [94940] = 4, + [96170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 2, - sym_identifier, - sym_metavariable, - STATE(3413), 2, + ACTIONS(5059), 1, + anon_sym_LBRACE, + STATE(1406), 1, + sym_declaration_list, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [94955] = 4, + [96187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5789), 2, - sym_identifier, - sym_super, - STATE(3414), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7030), 1, + anon_sym_in, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [94970] = 4, + [96204] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3415), 2, + ACTIONS(7032), 1, + anon_sym_SEMI, + ACTIONS(7034), 1, + anon_sym_EQ, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [94985] = 5, + [96221] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2386), 1, - sym_parameters, - STATE(3416), 2, + ACTIONS(7036), 2, + sym_identifier, + sym_metavariable, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [95002] = 5, + [96236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, + ACTIONS(5589), 1, sym_super, - ACTIONS(6994), 1, + ACTIONS(6878), 1, sym_identifier, - STATE(3417), 2, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [95019] = 5, + [96253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, - anon_sym_PIPE, - ACTIONS(6996), 1, - anon_sym_in, - STATE(3418), 2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(1412), 1, + sym_field_declaration_list, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [95036] = 4, + [96270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6998), 2, - sym_identifier, - sym_metavariable, - STATE(3419), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(1015), 1, + sym_type_parameters, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [95051] = 5, + [96287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - ACTIONS(7000), 1, - anon_sym_GT, - STATE(3420), 2, + ACTIONS(6822), 1, + anon_sym_LT, + STATE(1016), 1, + sym_type_parameters, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [95068] = 5, + [96304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_LT2, - STATE(1730), 1, - sym_type_arguments, - STATE(3421), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_declaration_list, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [95085] = 5, + [96321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(1003), 1, - sym_type_parameters, - STATE(3422), 2, + ACTIONS(7038), 2, + sym_identifier, + sym_metavariable, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [95102] = 5, + [96336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(1004), 1, - sym_type_parameters, - STATE(3423), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, + anon_sym_for, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [95119] = 4, + [96353] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6524), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3424), 2, + ACTIONS(6840), 2, + sym_identifier, + sym_super, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [95134] = 5, + [96368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(5126), 1, - anon_sym_for, - STATE(3425), 2, + ACTIONS(7040), 1, + anon_sym_SEMI, + ACTIONS(7042), 1, + anon_sym_as, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [95151] = 5, + [96385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_declaration_list, - STATE(3426), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(7044), 1, + anon_sym_COLON_COLON, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [95168] = 4, + [96402] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7002), 2, + ACTIONS(7046), 2, sym_identifier, sym_metavariable, - STATE(3427), 2, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [95183] = 5, + [96417] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACE, - STATE(688), 1, + STATE(599), 1, sym_field_declaration_list, - STATE(3428), 2, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [95200] = 5, + [96434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, + ACTIONS(4763), 1, anon_sym_COLON_COLON, - ACTIONS(6658), 1, + ACTIONS(6755), 1, anon_sym_for, - STATE(3429), 2, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [95217] = 5, + [96451] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2415), 1, - sym_parameters, - STATE(3430), 2, + ACTIONS(7048), 2, + sym_identifier, + sym_metavariable, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [95234] = 5, + [96466] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, + ACTIONS(4763), 1, anon_sym_COLON_COLON, - ACTIONS(6662), 1, + ACTIONS(6759), 1, anon_sym_for, - STATE(3431), 2, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [95251] = 5, + [96483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 1, - sym_super, - ACTIONS(6808), 1, - sym_identifier, - STATE(3432), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + ACTIONS(4016), 1, + anon_sym_COLON, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [95268] = 4, + [96500] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6870), 2, + ACTIONS(6493), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3468), 2, + sym_line_comment, + sym_block_comment, + [96515] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7050), 1, sym_identifier, + ACTIONS(7052), 1, sym_super, - STATE(3433), 2, + STATE(3469), 2, + sym_line_comment, + sym_block_comment, + [96532] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7054), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [95283] = 5, + [96547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(7004), 1, + ACTIONS(7056), 1, anon_sym_in, - STATE(3434), 2, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [95300] = 5, + [96564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6760), 1, - sym_identifier, - STATE(3435), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2404), 1, + sym_parameters, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [95317] = 5, + [96581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - ACTIONS(6676), 1, - anon_sym_for, - STATE(3436), 2, + ACTIONS(5676), 1, + sym_super, + ACTIONS(6952), 1, + sym_identifier, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [95334] = 5, + [96598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5787), 1, - sym_identifier, - ACTIONS(5789), 1, - sym_super, - STATE(3437), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + ACTIONS(6772), 1, + anon_sym_for, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [95351] = 5, + [96615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7006), 1, + ACTIONS(7058), 1, anon_sym_LBRACK, - ACTIONS(7008), 1, + ACTIONS(7060), 1, anon_sym_BANG, - STATE(3438), 2, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [95368] = 5, + [96632] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(7010), 1, + ACTIONS(7062), 1, anon_sym_in, - STATE(3439), 2, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [95385] = 5, + [96649] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7012), 1, - sym_identifier, - ACTIONS(7014), 1, - sym_super, - STATE(3440), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7064), 1, + anon_sym_in, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [95402] = 5, + [96666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(7016), 1, + ACTIONS(7066), 1, anon_sym_in, - STATE(3441), 2, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [95419] = 5, + [96683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5647), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(7068), 1, anon_sym_in, - STATE(3442), 2, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [95436] = 5, + [96700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2076), 1, - sym_parameters, - STATE(3443), 2, + ACTIONS(5430), 1, + anon_sym_RPAREN, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3480), 2, sym_line_comment, sym_block_comment, - [95453] = 5, + [96717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(689), 1, - sym_declaration_list, - STATE(3444), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2097), 1, + sym_parameters, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [95470] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [96734] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(220), 1, - sym_closure_parameters, - STATE(3445), 2, + ACTIONS(7070), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [95487] = 5, + [96749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - sym_identifier, - ACTIONS(6778), 1, - sym_super, - STATE(3446), 2, + ACTIONS(5408), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [95504] = 5, + [96766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6698), 1, + ACTIONS(6778), 1, sym_identifier, - ACTIONS(6702), 1, + ACTIONS(6782), 1, sym_mutable_specifier, - STATE(3447), 2, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [95521] = 4, + [96783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 2, - sym_identifier, - sym_super, - STATE(3448), 2, + ACTIONS(5310), 1, + anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [95536] = 5, + [96800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(951), 1, - sym_type_parameters, - STATE(3449), 2, + ACTIONS(5131), 1, + anon_sym_LBRACE, + STATE(603), 1, + sym_field_declaration_list, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [95553] = 5, + [96817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - STATE(2079), 1, + STATE(2095), 1, sym_parameters, - STATE(3450), 2, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [95570] = 5, + [96834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(691), 1, - sym_declaration_list, - STATE(3451), 2, + ACTIONS(4178), 1, + anon_sym_LPAREN, + STATE(1665), 1, + sym_parameters, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [95587] = 5, + [96851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - sym_identifier, - ACTIONS(7022), 1, - sym_super, - STATE(3452), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(505), 1, + sym_declaration_list, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [95604] = 4, + [96868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3453), 2, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(7072), 1, + anon_sym_EQ, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [95619] = 5, + [96885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 1, + ACTIONS(7074), 1, sym_identifier, - ACTIONS(7028), 1, + ACTIONS(7076), 1, sym_mutable_specifier, - STATE(3454), 2, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [95636] = 5, + [96902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - STATE(2084), 1, - sym_parameters, - STATE(3455), 2, + ACTIONS(7078), 1, + anon_sym_SEMI, + ACTIONS(7080), 1, + anon_sym_as, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [95653] = 5, + [96919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5581), 1, - sym_super, - ACTIONS(6962), 1, - sym_identifier, - STATE(3456), 2, + ACTIONS(4674), 1, + anon_sym_LPAREN, + STATE(2096), 1, + sym_parameters, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [95670] = 4, + [96936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6181), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3457), 2, + ACTIONS(5430), 1, + anon_sym_RBRACK, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [95685] = 4, + [96953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3458), 2, + ACTIONS(5093), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_declaration_list, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [95700] = 4, + [96970] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3459), 2, + ACTIONS(7082), 2, + sym_identifier, + sym_metavariable, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [95715] = 5, + [96985] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LPAREN, - STATE(1684), 1, - sym_parameters, - STATE(3460), 2, + ACTIONS(7084), 1, + sym_identifier, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [95732] = 4, + [96999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_SEMI, - STATE(3461), 2, + ACTIONS(7086), 1, + anon_sym_RBRACE, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [95746] = 4, + [97013] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - anon_sym_COLON_COLON, - STATE(3462), 2, + ACTIONS(7088), 1, + sym_identifier, + STATE(3499), 2, sym_line_comment, sym_block_comment, - [95760] = 4, + [97027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - anon_sym_COLON, - STATE(3463), 2, + ACTIONS(7090), 1, + sym_identifier, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [95774] = 4, + [97041] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, + ACTIONS(7092), 1, anon_sym_SEMI, - STATE(3464), 2, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [95788] = 4, + [97055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, + ACTIONS(7094), 1, anon_sym_SEMI, - STATE(3465), 2, - sym_line_comment, - sym_block_comment, - [95802] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_RBRACE, - STATE(3466), 2, - sym_line_comment, - sym_block_comment, - [95816] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3467), 2, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [95830] = 4, + [97069] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_SEMI, - STATE(3468), 2, + ACTIONS(7096), 1, + sym__line_doc_content, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [95844] = 4, + [97083] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6110), 1, - anon_sym_RPAREN, - STATE(3469), 2, + ACTIONS(6648), 1, + anon_sym_RBRACE, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [95858] = 4, + [97097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5833), 1, - anon_sym_RPAREN, - STATE(3470), 2, + ACTIONS(7098), 1, + sym_identifier, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [95872] = 4, + [97111] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, - anon_sym_RBRACE, - STATE(3471), 2, + ACTIONS(7100), 1, + sym_identifier, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [95886] = 4, + [97125] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - sym__raw_string_literal_end, - STATE(3472), 2, + ACTIONS(7102), 1, + sym_identifier, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [95900] = 4, + [97139] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_RBRACK, - STATE(3473), 2, + ACTIONS(7104), 1, + anon_sym_SEMI, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [95914] = 4, + [97153] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_RBRACK, - STATE(3474), 2, + ACTIONS(7106), 1, + anon_sym_fn, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [95928] = 4, + [97167] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_COLON_COLON, - STATE(3475), 2, + ACTIONS(7108), 1, + sym_identifier, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [95942] = 4, + [97181] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - STATE(3476), 2, + ACTIONS(7110), 1, + sym__raw_string_literal_end, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [95956] = 4, + [97195] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7056), 1, - anon_sym_SEMI, - STATE(3477), 2, + anon_sym_SLASH_STAR, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [95970] = 4, + [97209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, + ACTIONS(7112), 1, anon_sym_COLON_COLON, - STATE(3478), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [95984] = 4, + [97223] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - anon_sym_COLON_COLON, - STATE(3479), 2, + ACTIONS(7114), 1, + anon_sym_fn, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [95998] = 4, + [97237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, - anon_sym_fn, - STATE(3480), 2, + ACTIONS(7116), 1, + sym_identifier, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [96012] = 4, + [97251] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - anon_sym_RPAREN, - STATE(3481), 2, + ACTIONS(7118), 1, + sym_identifier, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [96026] = 4, + [97265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, + ACTIONS(5950), 1, anon_sym_LBRACE, - STATE(3482), 2, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [96040] = 4, + [97279] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON_COLON, - STATE(3483), 2, + ACTIONS(7120), 1, + anon_sym_SEMI, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [96054] = 4, + [97293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, + ACTIONS(7122), 1, anon_sym_SEMI, - STATE(3484), 2, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [96068] = 4, + [97307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - anon_sym_COLON, - STATE(3485), 2, + ACTIONS(7124), 1, + anon_sym_SEMI, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [96082] = 4, + [97321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_COLON, - STATE(3486), 2, + ACTIONS(7126), 1, + anon_sym_SEMI, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [96096] = 4, + [97335] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(929), 1, - anon_sym_EQ_GT, - STATE(3487), 2, + ACTIONS(3178), 1, + anon_sym_PLUS, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [96110] = 4, + [97349] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, - anon_sym_LPAREN, - STATE(3488), 2, + ACTIONS(7128), 1, + sym_identifier, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [96124] = 4, + [97363] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - anon_sym_SEMI, - STATE(3489), 2, + ACTIONS(7130), 1, + anon_sym_STAR_SLASH, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [96138] = 4, + [97377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, - sym__raw_string_literal_end, - STATE(3490), 2, + ACTIONS(6168), 1, + anon_sym_RBRACE, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [96152] = 4, + [97391] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, - anon_sym_RBRACE, - STATE(3491), 2, + ACTIONS(7132), 1, + anon_sym_EQ_GT, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [96166] = 4, + [97405] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_LT2, - STATE(3492), 2, + ACTIONS(7134), 1, + sym_identifier, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [96180] = 4, + [97419] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, - anon_sym_EQ_GT, - STATE(3493), 2, + ACTIONS(7136), 1, + anon_sym_RBRACE, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [96194] = 4, + [97433] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, - sym_identifier, - STATE(3494), 2, + ACTIONS(7138), 1, + anon_sym_COLON, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [96208] = 4, + [97447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6406), 1, - anon_sym_RBRACE, - STATE(3495), 2, + ACTIONS(7140), 1, + anon_sym_SEMI, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [96222] = 4, + [97461] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, - anon_sym_LBRACE, - STATE(3496), 2, + ACTIONS(3210), 1, + anon_sym_PLUS, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [96236] = 4, + [97475] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, + ACTIONS(7142), 1, sym_identifier, - STATE(3497), 2, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [96250] = 4, + [97489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, + ACTIONS(7144), 1, sym_identifier, - STATE(3498), 2, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [96264] = 4, + [97503] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - sym_identifier, - STATE(3499), 2, + ACTIONS(7146), 1, + anon_sym_RBRACK, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [96278] = 4, + [97517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, + ACTIONS(6964), 1, anon_sym_SEMI, - STATE(3500), 2, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [96292] = 4, + [97531] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_RBRACE, - STATE(3501), 2, + ACTIONS(7148), 1, + anon_sym_RBRACK, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [96306] = 4, + [97545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, - anon_sym_PLUS, - STATE(3502), 2, + ACTIONS(7150), 1, + sym_identifier, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [96320] = 4, + [97559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_COLON, - STATE(3503), 2, + ACTIONS(7152), 1, + anon_sym_SEMI, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [96334] = 4, + [97573] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, + ACTIONS(7154), 1, anon_sym_SEMI, - STATE(3504), 2, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [96348] = 4, + [97587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, - STATE(3505), 2, + ACTIONS(7156), 1, + anon_sym_SEMI, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [96362] = 4, + [97601] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - anon_sym_SEMI, - STATE(3506), 2, + ACTIONS(6210), 1, + anon_sym_RBRACE, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [96376] = 4, + [97615] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_RBRACK, - STATE(3507), 2, + ACTIONS(7158), 1, + sym_identifier, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [96390] = 4, + [97629] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_RPAREN, - STATE(3508), 2, + ACTIONS(7160), 1, + anon_sym_LPAREN, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [96404] = 4, + [97643] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, + ACTIONS(7162), 1, anon_sym_SEMI, - STATE(3509), 2, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [96418] = 4, + [97657] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - anon_sym_COLON, - STATE(3510), 2, + ACTIONS(4332), 1, + anon_sym_RPAREN, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [96432] = 4, + [97671] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - anon_sym_SEMI, - STATE(3511), 2, + ACTIONS(7164), 1, + anon_sym_RPAREN, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [96446] = 4, + [97685] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, + ACTIONS(7166), 1, anon_sym_RBRACK, - STATE(3512), 2, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [96460] = 4, + [97699] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_SEMI, - STATE(3513), 2, + ACTIONS(7168), 1, + anon_sym_COLON, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [96474] = 4, + [97713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - sym_identifier, - STATE(3514), 2, + ACTIONS(7170), 1, + anon_sym_SEMI, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [96488] = 4, + [97727] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - sym_identifier, - STATE(3515), 2, + ACTIONS(887), 1, + anon_sym_RBRACK, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [96502] = 4, + [97741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, + ACTIONS(7172), 1, anon_sym_SEMI, - STATE(3516), 2, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [96516] = 4, + [97755] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_RBRACK, - STATE(3517), 2, + ACTIONS(7174), 1, + anon_sym_SEMI, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [96530] = 4, + [97769] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - sym__line_doc_content, - STATE(3518), 2, + ACTIONS(4028), 1, + anon_sym_COLON_COLON, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [96544] = 4, + [97783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_LBRACK, - STATE(3519), 2, + ACTIONS(7176), 1, + sym_identifier, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [96558] = 4, + [97797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - sym__line_doc_content, - STATE(3520), 2, + ACTIONS(7178), 1, + sym_identifier, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [96572] = 4, + [97811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, + ACTIONS(7180), 1, anon_sym_SEMI, - STATE(3521), 2, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [96586] = 4, + [97825] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - anon_sym_SEMI, - STATE(3522), 2, + ACTIONS(7182), 1, + anon_sym_RBRACK, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [96600] = 4, + [97839] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5366), 1, + ACTIONS(7184), 1, anon_sym_SEMI, - STATE(3523), 2, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [96614] = 4, + [97853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - sym_identifier, - STATE(3524), 2, + ACTIONS(4688), 1, + anon_sym_fn, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [96628] = 4, + [97867] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, + ACTIONS(7186), 1, sym_identifier, - STATE(3525), 2, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [96642] = 4, + [97881] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_COLON, - STATE(3526), 2, + ACTIONS(6992), 1, + anon_sym_SEMI, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [96656] = 4, + [97895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - anon_sym_SEMI, - STATE(3527), 2, + ACTIONS(7188), 1, + anon_sym_COLON, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [96670] = 4, + [97909] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - sym__raw_string_literal_end, - STATE(3528), 2, + ACTIONS(6291), 1, + anon_sym_RBRACE, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [96684] = 4, + [97923] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - anon_sym_SEMI, - STATE(3529), 2, + ACTIONS(5061), 1, + anon_sym_COLON_COLON, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [96698] = 4, + [97937] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - sym__raw_string_literal_end, - STATE(3530), 2, + ACTIONS(7190), 1, + sym_identifier, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [96712] = 4, + [97951] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, + ACTIONS(7192), 1, anon_sym_SEMI, - STATE(3531), 2, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [96726] = 4, + [97965] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - anon_sym_SEMI, - STATE(3532), 2, + ACTIONS(7194), 1, + sym__line_doc_content, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [96740] = 4, + [97979] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - sym_identifier, - STATE(3533), 2, + ACTIONS(6196), 1, + anon_sym_RBRACE, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [96754] = 4, + [97993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - sym_identifier, - STATE(3534), 2, + ACTIONS(7196), 1, + anon_sym_COLON, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [96768] = 4, + [98007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - anon_sym_LPAREN, - STATE(3535), 2, + ACTIONS(7198), 1, + sym_identifier, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [96782] = 4, + [98021] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_EQ_GT, - STATE(3536), 2, + ACTIONS(7200), 1, + anon_sym_SEMI, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [96796] = 4, + [98035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - sym_identifier, - STATE(3537), 2, + ACTIONS(7202), 1, + anon_sym_SEMI, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [96810] = 4, + [98049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_SEMI, - STATE(3538), 2, + ACTIONS(6164), 1, + anon_sym_GT, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [96824] = 4, + [98063] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6954), 1, - anon_sym_SEMI, - STATE(3539), 2, + ACTIONS(7204), 1, + anon_sym_LBRACK, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [96838] = 4, + [98077] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - anon_sym_EQ_GT, - STATE(3540), 2, + ACTIONS(7206), 1, + anon_sym_SEMI, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [96852] = 4, + [98091] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_COLON_COLON, - STATE(3541), 2, + ACTIONS(7208), 1, + sym__raw_string_literal_end, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [96866] = 4, + [98105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5597), 1, - anon_sym_RPAREN, - STATE(3542), 2, + ACTIONS(7210), 1, + anon_sym_EQ, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [96880] = 4, + [98119] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_RPAREN, - STATE(3543), 2, + ACTIONS(7212), 1, + anon_sym_SEMI, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [96894] = 4, + [98133] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - sym__line_doc_content, - STATE(3544), 2, + ACTIONS(5696), 1, + anon_sym_RPAREN, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [96908] = 4, + [98147] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - sym_identifier, - STATE(3545), 2, + ACTIONS(7214), 1, + anon_sym_SEMI, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [96922] = 4, + [98161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_RBRACK, - STATE(3546), 2, + ACTIONS(7216), 1, + anon_sym_LPAREN, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [96936] = 4, + [98175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - sym__raw_string_literal_end, - STATE(3547), 2, + ACTIONS(7218), 1, + anon_sym_SEMI, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [96950] = 4, + [98189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(889), 1, - anon_sym_RBRACK, - STATE(3548), 2, + ACTIONS(7220), 1, + anon_sym_fn, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [96964] = 4, + [98203] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, + ACTIONS(7222), 1, sym_identifier, - STATE(3549), 2, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [96978] = 4, + [98217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - anon_sym_fn, - STATE(3550), 2, + ACTIONS(7224), 1, + sym_identifier, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [96992] = 4, + [98231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - sym_identifier, - STATE(3551), 2, + ACTIONS(941), 1, + anon_sym_RBRACK, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [97006] = 4, + [98245] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - anon_sym_SEMI, - STATE(3552), 2, + ACTIONS(6417), 1, + anon_sym_RBRACE, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [97020] = 4, + [98259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_SEMI, - STATE(3553), 2, + ACTIONS(7226), 1, + sym_identifier, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [97034] = 4, + [98273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - anon_sym_COLON, - STATE(3554), 2, + ACTIONS(5870), 1, + anon_sym_RPAREN, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [97048] = 4, + [98287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, - anon_sym_EQ_GT, - STATE(3555), 2, + ACTIONS(5938), 1, + anon_sym_RPAREN, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [97062] = 4, + [98301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6432), 1, - anon_sym_RBRACE, - STATE(3556), 2, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [97076] = 4, + [98315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6617), 1, - anon_sym_RBRACE, - STATE(3557), 2, + ACTIONS(7228), 1, + anon_sym_SEMI, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [97090] = 4, + [98329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, + ACTIONS(7230), 1, anon_sym_SEMI, - STATE(3558), 2, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [97104] = 4, + [98343] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - sym_identifier, - STATE(3559), 2, + ACTIONS(5890), 1, + anon_sym_RBRACK, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [97118] = 4, + [98357] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6646), 1, - anon_sym_GT, - STATE(3560), 2, + ACTIONS(7232), 1, + anon_sym_RBRACK, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [97132] = 4, + [98371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - sym_identifier, - STATE(3561), 2, + ACTIONS(7234), 1, + anon_sym_SEMI, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [97146] = 4, + [98385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_RPAREN, - STATE(3562), 2, + ACTIONS(6114), 1, + anon_sym_RBRACK, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [97160] = 4, + [98399] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - sym__line_doc_content, - STATE(3563), 2, + ACTIONS(7236), 1, + anon_sym_SEMI, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [97174] = 4, + [98413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - sym_self, - STATE(3564), 2, + ACTIONS(7238), 1, + anon_sym_SEMI, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [97188] = 4, + [98427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_RPAREN, - STATE(3565), 2, + ACTIONS(7240), 1, + sym_identifier, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [97202] = 4, + [98441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, + ACTIONS(7242), 1, sym_identifier, - STATE(3566), 2, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [97216] = 4, + [98455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_fn, - STATE(3567), 2, + ACTIONS(7244), 1, + anon_sym_RBRACK, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [97230] = 4, + [98469] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - sym_identifier, - STATE(3568), 2, + ACTIONS(7246), 1, + anon_sym_LBRACK, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [97244] = 4, + [98483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, - anon_sym_GT, - STATE(3569), 2, + ACTIONS(7248), 1, + sym__raw_string_literal_end, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [97258] = 4, - ACTIONS(103), 1, + [98497] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - anon_sym_SEMI, - STATE(3570), 2, + ACTIONS(7250), 1, + aux_sym_line_comment_token2, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [97272] = 4, + [98511] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 1, - anon_sym_RBRACE, - STATE(3571), 2, + ACTIONS(7252), 1, + sym_identifier, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [97286] = 4, + [98525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - sym_identifier, - STATE(3572), 2, + ACTIONS(7254), 1, + ts_builtin_sym_end, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [97300] = 4, + [98539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_COLON, - STATE(3573), 2, + ACTIONS(7256), 1, + anon_sym_SEMI, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [97314] = 4, + [98553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - sym_identifier, - STATE(3574), 2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [97328] = 4, + [98567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6279), 1, - anon_sym_GT, - STATE(3575), 2, + ACTIONS(7258), 1, + anon_sym_COLON_COLON, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [97342] = 4, + [98581] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6212), 1, - anon_sym_COLON_COLON, - STATE(3576), 2, + ACTIONS(5840), 1, + anon_sym_LBRACE, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [97356] = 4, + [98595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, + ACTIONS(7260), 1, anon_sym_RBRACE, - STATE(3577), 2, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [97370] = 4, + [98609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, + ACTIONS(7262), 1, anon_sym_SEMI, - STATE(3578), 2, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [97384] = 4, + [98623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3206), 1, - anon_sym_PLUS, - STATE(3579), 2, + ACTIONS(7264), 1, + anon_sym_SEMI, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [97398] = 4, + [98637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, - anon_sym_SEMI, - STATE(3580), 2, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [97412] = 4, + [98651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_RPAREN, - STATE(3581), 2, + ACTIONS(7268), 1, + anon_sym_LT, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [97426] = 4, + [98665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - anon_sym_SEMI, - STATE(3582), 2, + ACTIONS(6104), 1, + anon_sym_RPAREN, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [97440] = 4, + [98679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, + ACTIONS(7270), 1, anon_sym_SEMI, - STATE(3583), 2, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [97454] = 4, + [98693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, + ACTIONS(7272), 1, anon_sym_SEMI, - STATE(3584), 2, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [97468] = 4, + [98707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - sym_identifier, - STATE(3585), 2, + ACTIONS(6721), 1, + anon_sym_COLON_COLON, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [97482] = 4, + [98721] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RBRACK, - STATE(3586), 2, + ACTIONS(7274), 1, + anon_sym_COLON, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [97496] = 4, + [98735] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - anon_sym_RBRACK, - STATE(3587), 2, + ACTIONS(7276), 1, + sym_identifier, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [97510] = 4, + [98749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, + ACTIONS(7278), 1, anon_sym_SEMI, - STATE(3588), 2, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [97524] = 4, + [98763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - sym_raw_string_literal_content, - STATE(3589), 2, + ACTIONS(7280), 1, + anon_sym_SEMI, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [97538] = 4, + [98777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_SEMI, - STATE(3590), 2, + ACTIONS(7282), 1, + sym_raw_string_literal_content, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [97552] = 4, + [98791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, - anon_sym_SEMI, - STATE(3591), 2, + ACTIONS(7284), 1, + anon_sym_RBRACK, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [97566] = 4, + [98805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - anon_sym_SEMI, - STATE(3592), 2, + ACTIONS(5821), 1, + anon_sym_RPAREN, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [97580] = 4, + [98819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4270), 1, + ACTIONS(4340), 1, anon_sym_COLON_COLON, - STATE(3593), 2, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [97594] = 4, + [98833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6002), 1, + ACTIONS(6080), 1, anon_sym_COLON_COLON, - STATE(3594), 2, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [97608] = 4, + [98847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6734), 1, - anon_sym_RBRACE, - STATE(3595), 2, + ACTIONS(5636), 1, + anon_sym_RPAREN, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [97622] = 4, + [98861] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, - ts_builtin_sym_end, - STATE(3596), 2, + ACTIONS(6172), 1, + anon_sym_RBRACE, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [97636] = 4, + [98875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5719), 1, - anon_sym_RPAREN, - STATE(3597), 2, + ACTIONS(7286), 1, + anon_sym_LT2, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [97650] = 4, + [98889] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, + ACTIONS(7288), 1, anon_sym_COLON_COLON, - STATE(3598), 2, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [97664] = 4, + [98903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, + ACTIONS(7290), 1, anon_sym_SEMI, - STATE(3599), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [97678] = 4, + [98917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3808), 1, - anon_sym_COLON_COLON, - STATE(3600), 2, + ACTIONS(7292), 1, + sym_identifier, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [97692] = 4, + [98931] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - anon_sym_RPAREN, - STATE(3601), 2, + ACTIONS(7294), 1, + sym_identifier, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [97706] = 4, + [98945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - anon_sym_SEMI, - STATE(3602), 2, + ACTIONS(7296), 1, + sym_identifier, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [97720] = 4, + [98959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3158), 1, - anon_sym_PLUS, - STATE(3603), 2, + ACTIONS(7298), 1, + anon_sym_COLON, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [97734] = 4, + [98973] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, + ACTIONS(7300), 1, anon_sym_LT2, - STATE(3604), 2, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [97748] = 4, + [98987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4282), 1, + ACTIONS(5934), 1, anon_sym_RPAREN, - STATE(3605), 2, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [97762] = 4, + [99001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, + ACTIONS(7302), 1, anon_sym_fn, - STATE(3606), 2, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [97776] = 4, + [99015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - anon_sym_STAR_SLASH, - STATE(3607), 2, + ACTIONS(7304), 1, + anon_sym_EQ_GT, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [97790] = 4, + [99029] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, + ACTIONS(7306), 1, anon_sym_COLON_COLON, - STATE(3608), 2, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [97804] = 4, + [99043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, - anon_sym_EQ_GT, - STATE(3609), 2, + ACTIONS(7308), 1, + sym_identifier, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [97818] = 4, + [99057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - anon_sym_RBRACE, - STATE(3610), 2, + ACTIONS(7310), 1, + anon_sym_RBRACK, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [97832] = 4, + [99071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, + ACTIONS(7312), 1, anon_sym_COLON_COLON, - STATE(3611), 2, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [97846] = 4, + [99085] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6361), 1, - anon_sym_RBRACE, - STATE(3612), 2, + ACTIONS(7314), 1, + anon_sym_EQ_GT, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [97860] = 4, + [99099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, - anon_sym_GT, - STATE(3613), 2, + ACTIONS(5402), 1, + anon_sym_SEMI, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [97874] = 4, + [99113] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - sym_identifier, - STATE(3614), 2, + ACTIONS(6474), 1, + anon_sym_GT, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [97888] = 4, + [99127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5132), 1, + ACTIONS(5112), 1, anon_sym_COLON_COLON, - STATE(3615), 2, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [97902] = 4, + [99141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, + ACTIONS(7316), 1, anon_sym_COLON_COLON, - STATE(3616), 2, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [97916] = 4, + [99155] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(7318), 1, anon_sym_fn, - STATE(3617), 2, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [97930] = 4, + [99169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - anon_sym_SEMI, - STATE(3618), 2, + ACTIONS(7320), 1, + anon_sym_COLON_COLON, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [97944] = 4, + [99183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, + ACTIONS(7322), 1, anon_sym_LBRACE, - STATE(3619), 2, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [97958] = 4, + [99197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - sym_identifier, - STATE(3620), 2, + ACTIONS(7324), 1, + anon_sym_RBRACE, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [97972] = 4, + [99211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_SEMI, - STATE(3621), 2, + ACTIONS(7326), 1, + anon_sym_COLON, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [97986] = 4, + [99225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_RPAREN, - STATE(3622), 2, + ACTIONS(7328), 1, + anon_sym_COLON, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [98000] = 4, + [99239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 1, - anon_sym_RBRACE, - STATE(3623), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [98014] = 4, + [99253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_RBRACK, - STATE(3624), 2, + ACTIONS(6184), 1, + anon_sym_GT, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [98028] = 4, + [99267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, - anon_sym_COLON, - STATE(3625), 2, + ACTIONS(7332), 1, + anon_sym_RBRACK, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [98042] = 4, + [99281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - sym_identifier, - STATE(3626), 2, + ACTIONS(7334), 1, + anon_sym_EQ_GT, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [98056] = 4, + [99295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - sym_identifier, - STATE(3627), 2, + ACTIONS(6321), 1, + anon_sym_RBRACE, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [98070] = 4, + [99309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, + ACTIONS(7336), 1, sym_raw_string_literal_content, - STATE(3628), 2, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [98084] = 4, + [99323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, + ACTIONS(7338), 1, anon_sym_SEMI, - STATE(3629), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [98098] = 4, + [99337] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, + ACTIONS(7340), 1, anon_sym_SEMI, - STATE(3630), 2, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [98112] = 4, + [99351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, + ACTIONS(6806), 1, anon_sym_COLON_COLON, - STATE(3631), 2, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [98126] = 4, + [99365] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, - anon_sym_SEMI, - STATE(3632), 2, + ACTIONS(7342), 1, + anon_sym_COLON_COLON, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [98140] = 4, + [99379] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - anon_sym_COLON, - STATE(3633), 2, + ACTIONS(7344), 1, + anon_sym_RBRACE, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [98154] = 4, + [99393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - anon_sym_COLON_COLON, - STATE(3634), 2, + ACTIONS(7346), 1, + anon_sym_SEMI, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [98168] = 4, + [99407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym_identifier, - STATE(3635), 2, + ACTIONS(7348), 1, + anon_sym_COLON_COLON, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [98182] = 4, + [99421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - sym_identifier, - STATE(3636), 2, + ACTIONS(7350), 1, + sym__line_doc_content, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [98196] = 4, + [99435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - STATE(3637), 2, + ACTIONS(7352), 1, + anon_sym_RBRACE, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [98210] = 4, + [99449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - anon_sym_RBRACK, - STATE(3638), 2, + ACTIONS(7354), 1, + anon_sym_COLON_COLON, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [98224] = 4, + [99463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, - anon_sym_SEMI, - STATE(3639), 2, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [98238] = 4, + [99477] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3640), 2, + ACTIONS(7356), 1, + anon_sym_fn, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [98252] = 4, + [99491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, - sym_raw_string_literal_content, - STATE(3641), 2, + ACTIONS(7358), 1, + sym_identifier, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [98266] = 4, + [99505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - anon_sym_COLON_COLON, - STATE(3642), 2, + ACTIONS(7360), 1, + sym__line_doc_content, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [98280] = 4, + [99519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_LBRACE, - STATE(3643), 2, + ACTIONS(7362), 1, + anon_sym_COLON_COLON, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [98294] = 4, + [99533] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, - anon_sym_SEMI, - STATE(3644), 2, + ACTIONS(7364), 1, + anon_sym_LBRACE, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [98308] = 4, + [99547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6410), 1, + ACTIONS(7366), 1, anon_sym_RBRACE, - STATE(3645), 2, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [98322] = 4, + [99561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - anon_sym_RBRACK, - STATE(3646), 2, + ACTIONS(7368), 1, + sym_identifier, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [98336] = 4, + [99575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, - anon_sym_COLON, - STATE(3647), 2, + ACTIONS(7370), 1, + anon_sym_RPAREN, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [98350] = 4, + [99589] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, - sym_raw_string_literal_content, - STATE(3648), 2, + ACTIONS(7372), 1, + anon_sym_RPAREN, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [98364] = 4, + [99603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3586), 1, - anon_sym_COLON_COLON, - STATE(3649), 2, + ACTIONS(7374), 1, + sym_raw_string_literal_content, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [98378] = 4, + [99617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_fn, - STATE(3650), 2, + ACTIONS(3676), 1, + anon_sym_COLON_COLON, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [98392] = 4, + [99631] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, + ACTIONS(7376), 1, anon_sym_COLON_COLON, - STATE(3651), 2, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [98406] = 4, + [99645] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - sym_raw_string_literal_content, - STATE(3652), 2, + ACTIONS(7378), 1, + sym_self, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [98420] = 4, + [99659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - STATE(3653), 2, + ACTIONS(7380), 1, + anon_sym_RBRACK, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [98434] = 4, + [99673] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, + ACTIONS(7382), 1, anon_sym_LBRACE, - STATE(3654), 2, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [98448] = 4, + [99687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, + ACTIONS(7384), 1, sym_raw_string_literal_content, - STATE(3655), 2, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [98462] = 4, + [99701] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5286), 1, + ACTIONS(5350), 1, anon_sym_COLON_COLON, - STATE(3656), 2, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [98476] = 4, + [99715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(7386), 1, anon_sym_COLON_COLON, - STATE(3657), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [98490] = 4, + [99729] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - sym_identifier, - STATE(3658), 2, + ACTIONS(7388), 1, + sym_raw_string_literal_content, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [98504] = 4, + [99743] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6054), 1, + ACTIONS(6072), 1, anon_sym_LBRACE, - STATE(3659), 2, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [98518] = 4, + [99757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5848), 1, + ACTIONS(6118), 1, anon_sym_COLON_COLON, - STATE(3660), 2, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [98532] = 4, + [99771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, + ACTIONS(7390), 1, anon_sym_COLON_COLON, - STATE(3661), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [98546] = 4, + [99785] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6068), 1, + ACTIONS(6090), 1, anon_sym_LBRACE, - STATE(3662), 2, - sym_line_comment, - sym_block_comment, - [98560] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_COLON_COLON, - STATE(3663), 2, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [98574] = 4, + [99799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5290), 1, + ACTIONS(7392), 1, anon_sym_COLON_COLON, - STATE(3664), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [98588] = 4, + [99813] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5352), 1, anon_sym_COLON_COLON, - STATE(3665), 2, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [98602] = 4, + [99827] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4326), 1, + ACTIONS(5394), 1, anon_sym_COLON_COLON, - STATE(3666), 2, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [98616] = 4, + [99841] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, + ACTIONS(4352), 1, anon_sym_COLON_COLON, - STATE(3667), 2, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [98630] = 4, + [99855] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, + ACTIONS(7394), 1, anon_sym_COLON_COLON, - STATE(3668), 2, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [98644] = 4, + [99869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - anon_sym_EQ, - STATE(3669), 2, + ACTIONS(1001), 1, + anon_sym_EQ_GT, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [98658] = 4, + [99883] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 1, - anon_sym_SEMI, - STATE(3670), 2, + ACTIONS(6269), 1, + anon_sym_GT, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [98672] = 4, + [99897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6714), 1, - anon_sym_RBRACE, - STATE(3671), 2, + ACTIONS(7396), 1, + sym_identifier, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [98686] = 4, + [99911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, + ACTIONS(7398), 1, anon_sym_COLON, - STATE(3672), 2, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [98700] = 4, + [99925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, + ACTIONS(7400), 1, anon_sym_LBRACK, - STATE(3673), 2, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [98714] = 4, + [99939] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_SEMI, - STATE(3674), 2, + ACTIONS(7402), 1, + anon_sym_EQ_GT, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [98728] = 4, + [99953] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - sym_identifier, - STATE(3675), 2, + ACTIONS(6934), 1, + anon_sym_SEMI, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [98742] = 4, + [99967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, - STATE(3676), 2, + ACTIONS(7404), 1, + anon_sym_SEMI, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [98756] = 4, + [99981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_SEMI, - STATE(3677), 2, + ACTIONS(4763), 1, + anon_sym_COLON_COLON, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [98770] = 4, + [99995] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - sym_identifier, - STATE(3678), 2, + ACTIONS(5428), 1, + anon_sym_SEMI, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [98784] = 4, + [100009] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, + ACTIONS(7406), 1, anon_sym_LBRACK, - STATE(3679), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [98798] = 4, + [100023] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, + ACTIONS(7408), 1, anon_sym_COLON, - STATE(3680), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [98812] = 4, + [100037] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, + ACTIONS(7410), 1, anon_sym_COLON, - STATE(3681), 2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [98826] = 4, + [100051] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, + ACTIONS(7412), 1, sym_identifier, - STATE(3682), 2, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [98840] = 4, + [100065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - sym_identifier, - STATE(3683), 2, + ACTIONS(1011), 1, + anon_sym_RBRACK, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [98854] = 4, + [100079] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - anon_sym_SEMI, - STATE(3684), 2, + ACTIONS(7414), 1, + anon_sym_COLON, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [98868] = 4, + [100093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - anon_sym_SEMI, - STATE(3685), 2, + ACTIONS(7416), 1, + sym_identifier, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [98882] = 4, + [100107] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, + ACTIONS(7418), 1, anon_sym_COLON, - STATE(3686), 2, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [98896] = 4, + [100121] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - anon_sym_SEMI, - STATE(3687), 2, + ACTIONS(7420), 1, + sym_identifier, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [98910] = 4, + [100135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, + ACTIONS(4156), 1, sym_identifier, - STATE(3688), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [98924] = 4, + [100149] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, + ACTIONS(7422), 1, sym_identifier, - STATE(3689), 2, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [98938] = 4, + [100163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - sym_identifier, - STATE(3690), 2, + ACTIONS(7424), 1, + anon_sym_SEMI, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [98952] = 4, + [100177] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym_identifier, - STATE(3691), 2, + ACTIONS(7426), 1, + anon_sym_SEMI, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [98966] = 4, + [100191] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4252), 1, - anon_sym_COLON_COLON, - STATE(3692), 2, + ACTIONS(7428), 1, + anon_sym_SEMI, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [98980] = 4, + [100205] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, - anon_sym_SEMI, - STATE(3693), 2, + ACTIONS(7430), 1, + sym__raw_string_literal_end, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [98994] = 4, + [100219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_SEMI, - STATE(3694), 2, + ACTIONS(7432), 1, + sym_identifier, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [99008] = 4, + [100233] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, - sym_identifier, - STATE(3695), 2, + ACTIONS(4270), 1, + anon_sym_COLON_COLON, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [99022] = 4, + [100247] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_COLON_COLON, - STATE(3696), 2, + ACTIONS(7434), 1, + anon_sym_RPAREN, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [99036] = 4, + [100261] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - sym_identifier, - STATE(3697), 2, + ACTIONS(7436), 1, + sym__raw_string_literal_end, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [99050] = 4, + [100275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - sym_identifier, - STATE(3698), 2, + ACTIONS(4775), 1, + anon_sym_COLON_COLON, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [99064] = 4, + [100289] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, - sym_identifier, - STATE(3699), 2, + ACTIONS(6560), 1, + anon_sym_RBRACE, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [99078] = 4, + [100303] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, - anon_sym_SEMI, - STATE(3700), 2, + ACTIONS(6747), 1, + anon_sym_RBRACE, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [99092] = 4, + [100317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, + ACTIONS(7438), 1, anon_sym_COLON, - STATE(3701), 2, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [99106] = 4, + [100331] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - anon_sym_SEMI, - STATE(3702), 2, + ACTIONS(7440), 1, + anon_sym_COLON_COLON, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [99120] = 4, + [100345] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_RBRACK, - STATE(3703), 2, + ACTIONS(7442), 1, + sym_raw_string_literal_content, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [99134] = 4, + [100359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, - anon_sym_EQ, - STATE(3704), 2, + ACTIONS(7444), 1, + anon_sym_SEMI, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [99148] = 4, + [100373] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, + ACTIONS(7446), 1, anon_sym_COLON, - STATE(3705), 2, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [99162] = 4, + [100387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_EQ_GT, - STATE(3706), 2, + ACTIONS(7448), 1, + anon_sym_COLON, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [99176] = 4, + [100401] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_fn, - STATE(3707), 2, + ACTIONS(7450), 1, + sym_identifier, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [99190] = 4, + [100415] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, + ACTIONS(7452), 1, anon_sym_RBRACK, - STATE(3708), 2, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [99204] = 4, + [100429] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, + ACTIONS(7454), 1, anon_sym_SEMI, - STATE(3709), 2, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [99218] = 4, + [100443] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5911), 1, - anon_sym_RPAREN, - STATE(3710), 2, + ACTIONS(7456), 1, + anon_sym_SEMI, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [99232] = 4, + [100457] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, - anon_sym_LBRACK, - STATE(3711), 2, + ACTIONS(4300), 1, + anon_sym_RPAREN, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [99246] = 4, + [100471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_RBRACE, - STATE(3712), 2, + ACTIONS(7458), 1, + anon_sym_EQ_GT, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [99260] = 4, + [100485] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - sym_identifier, - STATE(3713), 2, + ACTIONS(6489), 1, + anon_sym_RBRACE, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [99274] = 4, + [100499] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, + ACTIONS(7460), 1, anon_sym_COLON, - STATE(3714), 2, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [99288] = 4, + [100513] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - anon_sym_RBRACK, - STATE(3715), 2, + ACTIONS(7462), 1, + anon_sym_SEMI, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [99302] = 4, + [100527] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6593), 1, - anon_sym_RBRACE, - STATE(3716), 2, + ACTIONS(7464), 1, + anon_sym_COLON_COLON, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [99316] = 4, + [100541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, + ACTIONS(7466), 1, anon_sym_SEMI, - STATE(3717), 2, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [99330] = 4, + [100555] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6373), 1, - anon_sym_RBRACE, - STATE(3718), 2, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [99344] = 4, + [100569] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5669), 1, - anon_sym_RPAREN, - STATE(3719), 2, + ACTIONS(7468), 1, + anon_sym_SEMI, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [99358] = 4, + [100583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - anon_sym_SEMI, - STATE(3720), 2, + ACTIONS(7470), 1, + anon_sym_RPAREN, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [99372] = 4, + [100597] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, + ACTIONS(7472), 1, anon_sym_EQ, - STATE(3721), 2, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [99386] = 4, + [100611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - STATE(3722), 2, + ACTIONS(7474), 1, + anon_sym_SEMI, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [99400] = 4, + [100625] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - anon_sym_COLON, - STATE(3723), 2, + ACTIONS(7476), 1, + anon_sym_SEMI, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [99414] = 4, + [100639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, - anon_sym_SEMI, - STATE(3724), 2, + ACTIONS(5753), 1, + anon_sym_RPAREN, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [99428] = 4, + [100653] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_COLON_COLON, - STATE(3725), 2, + ACTIONS(871), 1, + anon_sym_RBRACK, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [99442] = 4, + [100667] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 1, - anon_sym_RPAREN, - STATE(3726), 2, + ACTIONS(5408), 1, + anon_sym_SEMI, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [99456] = 4, + [100681] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, - sym_identifier, - STATE(3727), 2, + ACTIONS(7478), 1, + anon_sym_COLON, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [99470] = 4, + [100695] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_SEMI, - STATE(3728), 2, + ACTIONS(7480), 1, + anon_sym_COLON, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [99484] = 4, + [100709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, - anon_sym_COLON, - STATE(3729), 2, + ACTIONS(7482), 1, + anon_sym_STAR_SLASH, + STATE(3763), 2, sym_line_comment, sym_block_comment, - [99498] = 4, + [100723] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, + ACTIONS(7484), 1, anon_sym_COLON, - STATE(3730), 2, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [99512] = 4, + [100737] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, + ACTIONS(7486), 1, anon_sym_EQ, - STATE(3731), 2, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [99526] = 4, + [100751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, - anon_sym_RBRACK, - STATE(3732), 2, + ACTIONS(7488), 1, + anon_sym_LT2, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [99540] = 4, + [100765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, + ACTIONS(7490), 1, anon_sym_COLON, - STATE(3733), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [99554] = 4, + [100779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, + ACTIONS(7492), 1, anon_sym_LBRACK, - STATE(3734), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [99568] = 4, + [100793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, + ACTIONS(7494), 1, anon_sym_LBRACK, - STATE(3735), 2, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [99582] = 4, + [100807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, + ACTIONS(7496), 1, anon_sym_COLON, - STATE(3736), 2, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [99596] = 4, + [100821] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, - anon_sym_RBRACE, - STATE(3737), 2, + ACTIONS(5759), 1, + anon_sym_RPAREN, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [99610] = 4, - ACTIONS(3), 1, + [100835] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, - aux_sym_line_comment_token2, - STATE(3738), 2, + ACTIONS(7498), 1, + anon_sym_fn, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [99624] = 4, + [100849] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, + ACTIONS(7500), 1, anon_sym_COLON, - STATE(3739), 2, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [99638] = 4, + [100863] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, + ACTIONS(7502), 1, anon_sym_COLON, - STATE(3740), 2, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [99652] = 4, + [100877] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, - anon_sym_LT2, - STATE(3741), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [99666] = 4, + [100891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, - anon_sym_SEMI, - STATE(3742), 2, + ACTIONS(7504), 1, + anon_sym_RBRACE, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [99680] = 4, + [100905] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, + ACTIONS(7506), 1, anon_sym_COLON, - STATE(3743), 2, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [99694] = 4, + [100919] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, + ACTIONS(7508), 1, anon_sym_COLON, - STATE(3744), 2, + STATE(3778), 2, sym_line_comment, sym_block_comment, - [99708] = 4, + [100933] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7460), 1, + ACTIONS(7510), 1, anon_sym_COLON, - STATE(3745), 2, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [99722] = 4, + [100947] = 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_COLON_COLON, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [99736] = 4, + [100961] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, + ACTIONS(4724), 1, anon_sym_fn, - STATE(3747), 2, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [99750] = 4, + [100975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, - anon_sym_fn, - STATE(3748), 2, + ACTIONS(7514), 1, + anon_sym_SEMI, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [99764] = 4, + [100989] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, - sym_identifier, - STATE(3749), 2, + ACTIONS(7516), 1, + anon_sym_RPAREN, + STATE(3783), 2, sym_line_comment, sym_block_comment, - [99778] = 4, + [101003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - STATE(3750), 2, + ACTIONS(987), 1, + anon_sym_EQ_GT, + STATE(3784), 2, sym_line_comment, sym_block_comment, - [99792] = 4, + [101017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - anon_sym_STAR_SLASH, - STATE(3751), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3785), 2, sym_line_comment, sym_block_comment, - [99806] = 4, + [101031] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, - anon_sym_COLON_COLON, - STATE(3752), 2, + ACTIONS(5310), 1, + anon_sym_SEMI, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [99820] = 4, + [101045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, + ACTIONS(7518), 1, + sym__raw_string_literal_end, + STATE(3787), 2, + sym_line_comment, + sym_block_comment, + [101059] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7520), 1, sym_identifier, - STATE(3753), 2, + STATE(3788), 2, sym_line_comment, sym_block_comment, - [99834] = 4, + [101073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5643), 1, - anon_sym_RPAREN, - STATE(3754), 2, + ACTIONS(7522), 1, + sym__line_doc_content, + STATE(3789), 2, sym_line_comment, sym_block_comment, - [99848] = 4, + [101087] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - sym__raw_string_literal_end, - STATE(3755), 2, + ACTIONS(7524), 1, + sym_identifier, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [99862] = 4, + [101101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, + ACTIONS(7526), 1, sym_identifier, - STATE(3756), 2, + STATE(3791), 2, sym_line_comment, sym_block_comment, - [99876] = 4, + [101115] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, + ACTIONS(7528), 1, anon_sym_fn, - STATE(3757), 2, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [99890] = 4, + [101129] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_EQ_GT, - STATE(3758), 2, + ACTIONS(7530), 1, + anon_sym_EQ, + STATE(3793), 2, sym_line_comment, sym_block_comment, - [99904] = 4, + [101143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_COLON_COLON, - STATE(3759), 2, + ACTIONS(7532), 1, + sym_identifier, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [99918] = 4, + [101157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7484), 1, + ACTIONS(7534), 1, + sym_identifier, + STATE(3795), 2, + sym_line_comment, + sym_block_comment, + [101171] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6958), 1, anon_sym_SEMI, - STATE(3760), 2, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [99932] = 4, + [101185] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, + ACTIONS(7536), 1, sym_identifier, - STATE(3761), 2, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [99946] = 4, + [101199] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - sym__line_doc_content, - STATE(3762), 2, + ACTIONS(7538), 1, + anon_sym_SEMI, + STATE(3798), 2, sym_line_comment, sym_block_comment, - [99960] = 4, + [101213] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, - anon_sym_RBRACK, - STATE(3763), 2, + ACTIONS(7540), 1, + sym_identifier, + STATE(3799), 2, sym_line_comment, sym_block_comment, - [99974] = 4, + [101227] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, - sym_identifier, - STATE(3764), 2, + ACTIONS(7542), 1, + anon_sym_COLON_COLON, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [99988] = 4, + [101241] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, + ACTIONS(7544), 1, sym_identifier, - STATE(3765), 2, + STATE(3801), 2, sym_line_comment, sym_block_comment, - [100002] = 4, + [101255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, - anon_sym_SEMI, - STATE(3766), 2, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [100016] = 4, + [101269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, - anon_sym_SEMI, - STATE(3767), 2, + ACTIONS(7546), 1, + sym_identifier, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [100030] = 4, + [101283] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, - anon_sym_LT, - STATE(3768), 2, + ACTIONS(7548), 1, + sym_identifier, + STATE(3804), 2, sym_line_comment, sym_block_comment, - [100044] = 4, + [101297] = 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, - [100058] = 4, + [101311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, - anon_sym_COLON_COLON, - STATE(3770), 2, + ACTIONS(7552), 1, + sym_identifier, + STATE(3806), 2, sym_line_comment, sym_block_comment, - [100072] = 4, + [101325] = 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, - [100086] = 4, + [101339] = 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, - [100100] = 4, + [101353] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, + ACTIONS(7558), 1, sym_identifier, - STATE(3773), 2, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [100114] = 4, + [101367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_COLON_COLON, - STATE(3774), 2, + ACTIONS(7560), 1, + anon_sym_SEMI, + STATE(3810), 2, sym_line_comment, sym_block_comment, - [100128] = 4, + [101381] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, + ACTIONS(7562), 1, sym_identifier, - STATE(3775), 2, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [100142] = 4, + [101395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, + ACTIONS(7564), 1, anon_sym_fn, - STATE(3776), 2, + STATE(3812), 2, sym_line_comment, sym_block_comment, - [100156] = 4, + [101409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7516), 1, - sym_identifier, - STATE(3777), 2, + ACTIONS(3220), 1, + anon_sym_PLUS, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [100170] = 4, + [101423] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7518), 1, + ACTIONS(7566), 1, anon_sym_fn, - STATE(3778), 2, + STATE(3814), 2, sym_line_comment, sym_block_comment, - [100184] = 4, + [101437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, + ACTIONS(7568), 1, sym_identifier, - STATE(3779), 2, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [100198] = 1, - ACTIONS(7520), 1, + [101451] = 1, + ACTIONS(7570), 1, ts_builtin_sym_end, - [100202] = 1, - ACTIONS(7522), 1, + [101455] = 1, + ACTIONS(7572), 1, ts_builtin_sym_end, - [100206] = 1, - ACTIONS(7524), 1, + [101459] = 1, + ACTIONS(7574), 1, ts_builtin_sym_end, - [100210] = 1, - ACTIONS(7526), 1, + [101463] = 1, + ACTIONS(7576), 1, ts_builtin_sym_end, - [100214] = 1, - ACTIONS(7528), 1, + [101467] = 1, + ACTIONS(7578), 1, ts_builtin_sym_end, - [100218] = 1, - ACTIONS(7530), 1, + [101471] = 1, + ACTIONS(7580), 1, ts_builtin_sym_end, - [100222] = 1, - ACTIONS(7532), 1, + [101475] = 1, + ACTIONS(7582), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1056)] = 0, - [SMALL_STATE(1057)] = 75, - [SMALL_STATE(1058)] = 148, - [SMALL_STATE(1059)] = 219, - [SMALL_STATE(1060)] = 319, - [SMALL_STATE(1061)] = 419, - [SMALL_STATE(1062)] = 519, - [SMALL_STATE(1063)] = 596, - [SMALL_STATE(1064)] = 675, - [SMALL_STATE(1065)] = 752, - [SMALL_STATE(1066)] = 829, - [SMALL_STATE(1067)] = 903, - [SMALL_STATE(1068)] = 967, - [SMALL_STATE(1069)] = 1031, - [SMALL_STATE(1070)] = 1095, - [SMALL_STATE(1071)] = 1159, - [SMALL_STATE(1072)] = 1223, - [SMALL_STATE(1073)] = 1287, - [SMALL_STATE(1074)] = 1355, - [SMALL_STATE(1075)] = 1419, - [SMALL_STATE(1076)] = 1483, - [SMALL_STATE(1077)] = 1547, - [SMALL_STATE(1078)] = 1614, - [SMALL_STATE(1079)] = 1681, - [SMALL_STATE(1080)] = 1744, - [SMALL_STATE(1081)] = 1845, - [SMALL_STATE(1082)] = 1912, - [SMALL_STATE(1083)] = 1979, - [SMALL_STATE(1084)] = 2080, - [SMALL_STATE(1085)] = 2151, - [SMALL_STATE(1086)] = 2252, - [SMALL_STATE(1087)] = 2315, - [SMALL_STATE(1088)] = 2386, - [SMALL_STATE(1089)] = 2453, - [SMALL_STATE(1090)] = 2524, - [SMALL_STATE(1091)] = 2587, - [SMALL_STATE(1092)] = 2650, - [SMALL_STATE(1093)] = 2713, - [SMALL_STATE(1094)] = 2784, - [SMALL_STATE(1095)] = 2846, - [SMALL_STATE(1096)] = 2908, - [SMALL_STATE(1097)] = 2970, - [SMALL_STATE(1098)] = 3032, - [SMALL_STATE(1099)] = 3094, - [SMALL_STATE(1100)] = 3156, - [SMALL_STATE(1101)] = 3226, - [SMALL_STATE(1102)] = 3290, - [SMALL_STATE(1103)] = 3358, - [SMALL_STATE(1104)] = 3422, - [SMALL_STATE(1105)] = 3484, - [SMALL_STATE(1106)] = 3546, - [SMALL_STATE(1107)] = 3607, - [SMALL_STATE(1108)] = 3668, - [SMALL_STATE(1109)] = 3729, - [SMALL_STATE(1110)] = 3790, - [SMALL_STATE(1111)] = 3851, - [SMALL_STATE(1112)] = 3912, - [SMALL_STATE(1113)] = 3973, - [SMALL_STATE(1114)] = 4034, - [SMALL_STATE(1115)] = 4095, - [SMALL_STATE(1116)] = 4156, - [SMALL_STATE(1117)] = 4217, - [SMALL_STATE(1118)] = 4278, - [SMALL_STATE(1119)] = 4339, - [SMALL_STATE(1120)] = 4400, - [SMALL_STATE(1121)] = 4461, - [SMALL_STATE(1122)] = 4522, - [SMALL_STATE(1123)] = 4583, - [SMALL_STATE(1124)] = 4646, - [SMALL_STATE(1125)] = 4707, - [SMALL_STATE(1126)] = 4800, - [SMALL_STATE(1127)] = 4861, - [SMALL_STATE(1128)] = 4924, - [SMALL_STATE(1129)] = 4985, - [SMALL_STATE(1130)] = 5046, - [SMALL_STATE(1131)] = 5107, - [SMALL_STATE(1132)] = 5168, - [SMALL_STATE(1133)] = 5231, - [SMALL_STATE(1134)] = 5294, - [SMALL_STATE(1135)] = 5355, - [SMALL_STATE(1136)] = 5416, - [SMALL_STATE(1137)] = 5477, - [SMALL_STATE(1138)] = 5538, - [SMALL_STATE(1139)] = 5599, - [SMALL_STATE(1140)] = 5660, - [SMALL_STATE(1141)] = 5721, - [SMALL_STATE(1142)] = 5782, - [SMALL_STATE(1143)] = 5843, - [SMALL_STATE(1144)] = 5904, - [SMALL_STATE(1145)] = 5965, - [SMALL_STATE(1146)] = 6026, - [SMALL_STATE(1147)] = 6087, - [SMALL_STATE(1148)] = 6148, - [SMALL_STATE(1149)] = 6209, - [SMALL_STATE(1150)] = 6270, - [SMALL_STATE(1151)] = 6331, - [SMALL_STATE(1152)] = 6392, - [SMALL_STATE(1153)] = 6453, - [SMALL_STATE(1154)] = 6514, - [SMALL_STATE(1155)] = 6575, - [SMALL_STATE(1156)] = 6636, - [SMALL_STATE(1157)] = 6697, - [SMALL_STATE(1158)] = 6758, - [SMALL_STATE(1159)] = 6819, - [SMALL_STATE(1160)] = 6880, - [SMALL_STATE(1161)] = 6941, - [SMALL_STATE(1162)] = 7004, - [SMALL_STATE(1163)] = 7065, - [SMALL_STATE(1164)] = 7140, - [SMALL_STATE(1165)] = 7201, - [SMALL_STATE(1166)] = 7262, - [SMALL_STATE(1167)] = 7323, - [SMALL_STATE(1168)] = 7384, - [SMALL_STATE(1169)] = 7445, - [SMALL_STATE(1170)] = 7548, - [SMALL_STATE(1171)] = 7609, - [SMALL_STATE(1172)] = 7712, - [SMALL_STATE(1173)] = 7773, - [SMALL_STATE(1174)] = 7834, - [SMALL_STATE(1175)] = 7895, - [SMALL_STATE(1176)] = 7956, - [SMALL_STATE(1177)] = 8017, - [SMALL_STATE(1178)] = 8078, - [SMALL_STATE(1179)] = 8139, - [SMALL_STATE(1180)] = 8200, - [SMALL_STATE(1181)] = 8261, - [SMALL_STATE(1182)] = 8322, - [SMALL_STATE(1183)] = 8383, - [SMALL_STATE(1184)] = 8444, - [SMALL_STATE(1185)] = 8505, - [SMALL_STATE(1186)] = 8566, - [SMALL_STATE(1187)] = 8627, - [SMALL_STATE(1188)] = 8688, - [SMALL_STATE(1189)] = 8749, - [SMALL_STATE(1190)] = 8810, - [SMALL_STATE(1191)] = 8871, - [SMALL_STATE(1192)] = 8932, - [SMALL_STATE(1193)] = 8993, - [SMALL_STATE(1194)] = 9054, - [SMALL_STATE(1195)] = 9115, - [SMALL_STATE(1196)] = 9176, - [SMALL_STATE(1197)] = 9269, - [SMALL_STATE(1198)] = 9330, - [SMALL_STATE(1199)] = 9391, - [SMALL_STATE(1200)] = 9452, - [SMALL_STATE(1201)] = 9513, - [SMALL_STATE(1202)] = 9574, - [SMALL_STATE(1203)] = 9635, - [SMALL_STATE(1204)] = 9696, - [SMALL_STATE(1205)] = 9757, - [SMALL_STATE(1206)] = 9850, - [SMALL_STATE(1207)] = 9911, - [SMALL_STATE(1208)] = 9972, - [SMALL_STATE(1209)] = 10033, - [SMALL_STATE(1210)] = 10094, - [SMALL_STATE(1211)] = 10155, - [SMALL_STATE(1212)] = 10216, - [SMALL_STATE(1213)] = 10277, - [SMALL_STATE(1214)] = 10338, - [SMALL_STATE(1215)] = 10399, - [SMALL_STATE(1216)] = 10460, - [SMALL_STATE(1217)] = 10521, - [SMALL_STATE(1218)] = 10582, - [SMALL_STATE(1219)] = 10643, - [SMALL_STATE(1220)] = 10704, - [SMALL_STATE(1221)] = 10765, - [SMALL_STATE(1222)] = 10828, - [SMALL_STATE(1223)] = 10889, - [SMALL_STATE(1224)] = 10952, - [SMALL_STATE(1225)] = 11013, - [SMALL_STATE(1226)] = 11074, - [SMALL_STATE(1227)] = 11137, - [SMALL_STATE(1228)] = 11198, - [SMALL_STATE(1229)] = 11259, - [SMALL_STATE(1230)] = 11320, - [SMALL_STATE(1231)] = 11381, - [SMALL_STATE(1232)] = 11442, - [SMALL_STATE(1233)] = 11505, - [SMALL_STATE(1234)] = 11566, - [SMALL_STATE(1235)] = 11629, - [SMALL_STATE(1236)] = 11690, - [SMALL_STATE(1237)] = 11751, - [SMALL_STATE(1238)] = 11812, - [SMALL_STATE(1239)] = 11873, - [SMALL_STATE(1240)] = 11934, - [SMALL_STATE(1241)] = 11995, - [SMALL_STATE(1242)] = 12070, - [SMALL_STATE(1243)] = 12135, - [SMALL_STATE(1244)] = 12196, - [SMALL_STATE(1245)] = 12257, - [SMALL_STATE(1246)] = 12318, - [SMALL_STATE(1247)] = 12421, - [SMALL_STATE(1248)] = 12482, - [SMALL_STATE(1249)] = 12543, - [SMALL_STATE(1250)] = 12604, - [SMALL_STATE(1251)] = 12665, - [SMALL_STATE(1252)] = 12726, - [SMALL_STATE(1253)] = 12787, - [SMALL_STATE(1254)] = 12848, - [SMALL_STATE(1255)] = 12909, - [SMALL_STATE(1256)] = 12970, - [SMALL_STATE(1257)] = 13031, - [SMALL_STATE(1258)] = 13092, - [SMALL_STATE(1259)] = 13153, - [SMALL_STATE(1260)] = 13214, - [SMALL_STATE(1261)] = 13275, - [SMALL_STATE(1262)] = 13336, - [SMALL_STATE(1263)] = 13397, - [SMALL_STATE(1264)] = 13458, - [SMALL_STATE(1265)] = 13519, - [SMALL_STATE(1266)] = 13580, - [SMALL_STATE(1267)] = 13641, - [SMALL_STATE(1268)] = 13702, - [SMALL_STATE(1269)] = 13763, - [SMALL_STATE(1270)] = 13824, - [SMALL_STATE(1271)] = 13885, - [SMALL_STATE(1272)] = 13946, - [SMALL_STATE(1273)] = 14007, - [SMALL_STATE(1274)] = 14068, - [SMALL_STATE(1275)] = 14129, - [SMALL_STATE(1276)] = 14190, - [SMALL_STATE(1277)] = 14251, - [SMALL_STATE(1278)] = 14316, - [SMALL_STATE(1279)] = 14377, - [SMALL_STATE(1280)] = 14438, - [SMALL_STATE(1281)] = 14501, - [SMALL_STATE(1282)] = 14562, - [SMALL_STATE(1283)] = 14623, - [SMALL_STATE(1284)] = 14686, - [SMALL_STATE(1285)] = 14747, - [SMALL_STATE(1286)] = 14808, - [SMALL_STATE(1287)] = 14869, - [SMALL_STATE(1288)] = 14930, - [SMALL_STATE(1289)] = 14991, - [SMALL_STATE(1290)] = 15052, - [SMALL_STATE(1291)] = 15113, - [SMALL_STATE(1292)] = 15174, - [SMALL_STATE(1293)] = 15235, - [SMALL_STATE(1294)] = 15296, - [SMALL_STATE(1295)] = 15357, - [SMALL_STATE(1296)] = 15418, - [SMALL_STATE(1297)] = 15479, - [SMALL_STATE(1298)] = 15542, - [SMALL_STATE(1299)] = 15605, - [SMALL_STATE(1300)] = 15668, - [SMALL_STATE(1301)] = 15729, - [SMALL_STATE(1302)] = 15790, - [SMALL_STATE(1303)] = 15851, - [SMALL_STATE(1304)] = 15912, - [SMALL_STATE(1305)] = 15973, - [SMALL_STATE(1306)] = 16034, - [SMALL_STATE(1307)] = 16095, - [SMALL_STATE(1308)] = 16156, - [SMALL_STATE(1309)] = 16217, - [SMALL_STATE(1310)] = 16278, - [SMALL_STATE(1311)] = 16339, - [SMALL_STATE(1312)] = 16400, - [SMALL_STATE(1313)] = 16463, - [SMALL_STATE(1314)] = 16524, - [SMALL_STATE(1315)] = 16585, - [SMALL_STATE(1316)] = 16646, - [SMALL_STATE(1317)] = 16707, - [SMALL_STATE(1318)] = 16768, - [SMALL_STATE(1319)] = 16829, - [SMALL_STATE(1320)] = 16890, - [SMALL_STATE(1321)] = 16951, - [SMALL_STATE(1322)] = 17012, - [SMALL_STATE(1323)] = 17073, - [SMALL_STATE(1324)] = 17134, - [SMALL_STATE(1325)] = 17195, - [SMALL_STATE(1326)] = 17256, - [SMALL_STATE(1327)] = 17317, - [SMALL_STATE(1328)] = 17378, - [SMALL_STATE(1329)] = 17439, - [SMALL_STATE(1330)] = 17502, - [SMALL_STATE(1331)] = 17563, - [SMALL_STATE(1332)] = 17624, - [SMALL_STATE(1333)] = 17685, - [SMALL_STATE(1334)] = 17746, - [SMALL_STATE(1335)] = 17807, - [SMALL_STATE(1336)] = 17868, - [SMALL_STATE(1337)] = 17929, - [SMALL_STATE(1338)] = 17990, - [SMALL_STATE(1339)] = 18051, - [SMALL_STATE(1340)] = 18112, - [SMALL_STATE(1341)] = 18173, - [SMALL_STATE(1342)] = 18234, - [SMALL_STATE(1343)] = 18295, - [SMALL_STATE(1344)] = 18356, - [SMALL_STATE(1345)] = 18417, - [SMALL_STATE(1346)] = 18478, - [SMALL_STATE(1347)] = 18539, - [SMALL_STATE(1348)] = 18600, - [SMALL_STATE(1349)] = 18661, - [SMALL_STATE(1350)] = 18722, - [SMALL_STATE(1351)] = 18783, - [SMALL_STATE(1352)] = 18844, - [SMALL_STATE(1353)] = 18905, - [SMALL_STATE(1354)] = 18966, - [SMALL_STATE(1355)] = 19027, - [SMALL_STATE(1356)] = 19088, - [SMALL_STATE(1357)] = 19149, - [SMALL_STATE(1358)] = 19210, - [SMALL_STATE(1359)] = 19271, - [SMALL_STATE(1360)] = 19332, - [SMALL_STATE(1361)] = 19393, - [SMALL_STATE(1362)] = 19454, - [SMALL_STATE(1363)] = 19515, - [SMALL_STATE(1364)] = 19576, - [SMALL_STATE(1365)] = 19637, - [SMALL_STATE(1366)] = 19698, - [SMALL_STATE(1367)] = 19759, - [SMALL_STATE(1368)] = 19820, - [SMALL_STATE(1369)] = 19881, - [SMALL_STATE(1370)] = 19942, - [SMALL_STATE(1371)] = 20003, - [SMALL_STATE(1372)] = 20064, - [SMALL_STATE(1373)] = 20125, - [SMALL_STATE(1374)] = 20186, - [SMALL_STATE(1375)] = 20247, - [SMALL_STATE(1376)] = 20308, - [SMALL_STATE(1377)] = 20369, - [SMALL_STATE(1378)] = 20430, - [SMALL_STATE(1379)] = 20491, - [SMALL_STATE(1380)] = 20552, - [SMALL_STATE(1381)] = 20613, - [SMALL_STATE(1382)] = 20674, - [SMALL_STATE(1383)] = 20735, - [SMALL_STATE(1384)] = 20796, - [SMALL_STATE(1385)] = 20857, - [SMALL_STATE(1386)] = 20918, - [SMALL_STATE(1387)] = 20979, - [SMALL_STATE(1388)] = 21040, - [SMALL_STATE(1389)] = 21101, - [SMALL_STATE(1390)] = 21162, - [SMALL_STATE(1391)] = 21223, - [SMALL_STATE(1392)] = 21284, - [SMALL_STATE(1393)] = 21345, - [SMALL_STATE(1394)] = 21406, - [SMALL_STATE(1395)] = 21467, - [SMALL_STATE(1396)] = 21528, - [SMALL_STATE(1397)] = 21589, - [SMALL_STATE(1398)] = 21650, - [SMALL_STATE(1399)] = 21711, - [SMALL_STATE(1400)] = 21772, - [SMALL_STATE(1401)] = 21833, - [SMALL_STATE(1402)] = 21896, - [SMALL_STATE(1403)] = 21957, - [SMALL_STATE(1404)] = 22018, - [SMALL_STATE(1405)] = 22079, - [SMALL_STATE(1406)] = 22140, - [SMALL_STATE(1407)] = 22201, - [SMALL_STATE(1408)] = 22262, - [SMALL_STATE(1409)] = 22323, - [SMALL_STATE(1410)] = 22384, - [SMALL_STATE(1411)] = 22445, - [SMALL_STATE(1412)] = 22506, - [SMALL_STATE(1413)] = 22567, - [SMALL_STATE(1414)] = 22628, - [SMALL_STATE(1415)] = 22689, - [SMALL_STATE(1416)] = 22750, - [SMALL_STATE(1417)] = 22811, - [SMALL_STATE(1418)] = 22876, - [SMALL_STATE(1419)] = 22937, - [SMALL_STATE(1420)] = 23040, - [SMALL_STATE(1421)] = 23101, - [SMALL_STATE(1422)] = 23162, - [SMALL_STATE(1423)] = 23223, - [SMALL_STATE(1424)] = 23284, - [SMALL_STATE(1425)] = 23345, - [SMALL_STATE(1426)] = 23406, - [SMALL_STATE(1427)] = 23466, - [SMALL_STATE(1428)] = 23526, - [SMALL_STATE(1429)] = 23586, - [SMALL_STATE(1430)] = 23646, - [SMALL_STATE(1431)] = 23742, - [SMALL_STATE(1432)] = 23802, - [SMALL_STATE(1433)] = 23862, - [SMALL_STATE(1434)] = 23924, - [SMALL_STATE(1435)] = 23984, - [SMALL_STATE(1436)] = 24052, - [SMALL_STATE(1437)] = 24112, - [SMALL_STATE(1438)] = 24172, - [SMALL_STATE(1439)] = 24232, - [SMALL_STATE(1440)] = 24294, - [SMALL_STATE(1441)] = 24354, - [SMALL_STATE(1442)] = 24414, - [SMALL_STATE(1443)] = 24474, - [SMALL_STATE(1444)] = 24534, - [SMALL_STATE(1445)] = 24600, - [SMALL_STATE(1446)] = 24660, - [SMALL_STATE(1447)] = 24720, - [SMALL_STATE(1448)] = 24780, - [SMALL_STATE(1449)] = 24840, - [SMALL_STATE(1450)] = 24900, - [SMALL_STATE(1451)] = 24960, - [SMALL_STATE(1452)] = 25020, - [SMALL_STATE(1453)] = 25080, - [SMALL_STATE(1454)] = 25140, - [SMALL_STATE(1455)] = 25200, - [SMALL_STATE(1456)] = 25260, - [SMALL_STATE(1457)] = 25320, - [SMALL_STATE(1458)] = 25380, - [SMALL_STATE(1459)] = 25440, - [SMALL_STATE(1460)] = 25500, - [SMALL_STATE(1461)] = 25560, - [SMALL_STATE(1462)] = 25620, - [SMALL_STATE(1463)] = 25680, - [SMALL_STATE(1464)] = 25740, - [SMALL_STATE(1465)] = 25800, - [SMALL_STATE(1466)] = 25860, - [SMALL_STATE(1467)] = 25920, - [SMALL_STATE(1468)] = 25980, - [SMALL_STATE(1469)] = 26040, - [SMALL_STATE(1470)] = 26100, - [SMALL_STATE(1471)] = 26160, - [SMALL_STATE(1472)] = 26220, - [SMALL_STATE(1473)] = 26280, - [SMALL_STATE(1474)] = 26340, - [SMALL_STATE(1475)] = 26400, - [SMALL_STATE(1476)] = 26460, - [SMALL_STATE(1477)] = 26520, - [SMALL_STATE(1478)] = 26580, - [SMALL_STATE(1479)] = 26640, - [SMALL_STATE(1480)] = 26700, - [SMALL_STATE(1481)] = 26760, - [SMALL_STATE(1482)] = 26820, - [SMALL_STATE(1483)] = 26880, - [SMALL_STATE(1484)] = 26940, - [SMALL_STATE(1485)] = 27000, - [SMALL_STATE(1486)] = 27060, - [SMALL_STATE(1487)] = 27120, - [SMALL_STATE(1488)] = 27180, - [SMALL_STATE(1489)] = 27240, - [SMALL_STATE(1490)] = 27300, - [SMALL_STATE(1491)] = 27360, - [SMALL_STATE(1492)] = 27420, - [SMALL_STATE(1493)] = 27480, - [SMALL_STATE(1494)] = 27540, - [SMALL_STATE(1495)] = 27600, - [SMALL_STATE(1496)] = 27660, - [SMALL_STATE(1497)] = 27720, - [SMALL_STATE(1498)] = 27780, - [SMALL_STATE(1499)] = 27840, - [SMALL_STATE(1500)] = 27900, - [SMALL_STATE(1501)] = 27960, - [SMALL_STATE(1502)] = 28020, - [SMALL_STATE(1503)] = 28080, - [SMALL_STATE(1504)] = 28140, - [SMALL_STATE(1505)] = 28200, - [SMALL_STATE(1506)] = 28260, - [SMALL_STATE(1507)] = 28320, - [SMALL_STATE(1508)] = 28380, - [SMALL_STATE(1509)] = 28440, - [SMALL_STATE(1510)] = 28500, - [SMALL_STATE(1511)] = 28560, - [SMALL_STATE(1512)] = 28620, - [SMALL_STATE(1513)] = 28680, - [SMALL_STATE(1514)] = 28740, - [SMALL_STATE(1515)] = 28800, - [SMALL_STATE(1516)] = 28860, - [SMALL_STATE(1517)] = 28920, - [SMALL_STATE(1518)] = 28980, - [SMALL_STATE(1519)] = 29040, - [SMALL_STATE(1520)] = 29100, - [SMALL_STATE(1521)] = 29160, - [SMALL_STATE(1522)] = 29220, - [SMALL_STATE(1523)] = 29280, - [SMALL_STATE(1524)] = 29340, - [SMALL_STATE(1525)] = 29400, - [SMALL_STATE(1526)] = 29460, - [SMALL_STATE(1527)] = 29524, - [SMALL_STATE(1528)] = 29590, - [SMALL_STATE(1529)] = 29650, - [SMALL_STATE(1530)] = 29710, - [SMALL_STATE(1531)] = 29770, - [SMALL_STATE(1532)] = 29844, - [SMALL_STATE(1533)] = 29904, - [SMALL_STATE(1534)] = 29970, - [SMALL_STATE(1535)] = 30036, - [SMALL_STATE(1536)] = 30096, - [SMALL_STATE(1537)] = 30156, - [SMALL_STATE(1538)] = 30216, - [SMALL_STATE(1539)] = 30276, - [SMALL_STATE(1540)] = 30336, - [SMALL_STATE(1541)] = 30400, - [SMALL_STATE(1542)] = 30460, - [SMALL_STATE(1543)] = 30520, - [SMALL_STATE(1544)] = 30580, - [SMALL_STATE(1545)] = 30640, - [SMALL_STATE(1546)] = 30700, - [SMALL_STATE(1547)] = 30771, - [SMALL_STATE(1548)] = 30832, - [SMALL_STATE(1549)] = 30893, - [SMALL_STATE(1550)] = 30962, - [SMALL_STATE(1551)] = 31048, - [SMALL_STATE(1552)] = 31126, - [SMALL_STATE(1553)] = 31212, - [SMALL_STATE(1554)] = 31270, - [SMALL_STATE(1555)] = 31328, - [SMALL_STATE(1556)] = 31414, - [SMALL_STATE(1557)] = 31506, - [SMALL_STATE(1558)] = 31592, - [SMALL_STATE(1559)] = 31652, - [SMALL_STATE(1560)] = 31742, - [SMALL_STATE(1561)] = 31810, - [SMALL_STATE(1562)] = 31884, - [SMALL_STATE(1563)] = 31956, - [SMALL_STATE(1564)] = 32048, - [SMALL_STATE(1565)] = 32138, - [SMALL_STATE(1566)] = 32204, - [SMALL_STATE(1567)] = 32274, - [SMALL_STATE(1568)] = 32334, - [SMALL_STATE(1569)] = 32404, - [SMALL_STATE(1570)] = 32474, - [SMALL_STATE(1571)] = 32560, - [SMALL_STATE(1572)] = 32646, - [SMALL_STATE(1573)] = 32722, - [SMALL_STATE(1574)] = 32780, - [SMALL_STATE(1575)] = 32866, - [SMALL_STATE(1576)] = 32948, - [SMALL_STATE(1577)] = 33038, - [SMALL_STATE(1578)] = 33124, - [SMALL_STATE(1579)] = 33208, - [SMALL_STATE(1580)] = 33298, - [SMALL_STATE(1581)] = 33368, - [SMALL_STATE(1582)] = 33460, - [SMALL_STATE(1583)] = 33550, - [SMALL_STATE(1584)] = 33640, - [SMALL_STATE(1585)] = 33703, - [SMALL_STATE(1586)] = 33768, - [SMALL_STATE(1587)] = 33831, - [SMALL_STATE(1588)] = 33898, - [SMALL_STATE(1589)] = 33954, - [SMALL_STATE(1590)] = 34010, - [SMALL_STATE(1591)] = 34070, - [SMALL_STATE(1592)] = 34130, - [SMALL_STATE(1593)] = 34194, - [SMALL_STATE(1594)] = 34252, - [SMALL_STATE(1595)] = 34316, - [SMALL_STATE(1596)] = 34374, - [SMALL_STATE(1597)] = 34432, - [SMALL_STATE(1598)] = 34488, - [SMALL_STATE(1599)] = 34552, - [SMALL_STATE(1600)] = 34612, - [SMALL_STATE(1601)] = 34672, - [SMALL_STATE(1602)] = 34732, - [SMALL_STATE(1603)] = 34790, - [SMALL_STATE(1604)] = 34846, - [SMALL_STATE(1605)] = 34910, - [SMALL_STATE(1606)] = 34970, - [SMALL_STATE(1607)] = 35030, - [SMALL_STATE(1608)] = 35119, - [SMALL_STATE(1609)] = 35174, - [SMALL_STATE(1610)] = 35229, - [SMALL_STATE(1611)] = 35286, - [SMALL_STATE(1612)] = 35341, - [SMALL_STATE(1613)] = 35398, - [SMALL_STATE(1614)] = 35453, - [SMALL_STATE(1615)] = 35512, - [SMALL_STATE(1616)] = 35601, - [SMALL_STATE(1617)] = 35656, - [SMALL_STATE(1618)] = 35711, - [SMALL_STATE(1619)] = 35766, - [SMALL_STATE(1620)] = 35855, - [SMALL_STATE(1621)] = 35950, - [SMALL_STATE(1622)] = 36009, - [SMALL_STATE(1623)] = 36068, - [SMALL_STATE(1624)] = 36163, - [SMALL_STATE(1625)] = 36220, - [SMALL_STATE(1626)] = 36315, - [SMALL_STATE(1627)] = 36410, - [SMALL_STATE(1628)] = 36505, - [SMALL_STATE(1629)] = 36600, - [SMALL_STATE(1630)] = 36695, - [SMALL_STATE(1631)] = 36752, - [SMALL_STATE(1632)] = 36811, - [SMALL_STATE(1633)] = 36906, - [SMALL_STATE(1634)] = 37001, - [SMALL_STATE(1635)] = 37096, - [SMALL_STATE(1636)] = 37191, - [SMALL_STATE(1637)] = 37248, - [SMALL_STATE(1638)] = 37305, - [SMALL_STATE(1639)] = 37394, - [SMALL_STATE(1640)] = 37449, - [SMALL_STATE(1641)] = 37506, - [SMALL_STATE(1642)] = 37601, - [SMALL_STATE(1643)] = 37655, - [SMALL_STATE(1644)] = 37711, - [SMALL_STATE(1645)] = 37779, - [SMALL_STATE(1646)] = 37833, - [SMALL_STATE(1647)] = 37905, - [SMALL_STATE(1648)] = 37959, - [SMALL_STATE(1649)] = 38015, - [SMALL_STATE(1650)] = 38069, - [SMALL_STATE(1651)] = 38125, - [SMALL_STATE(1652)] = 38203, - [SMALL_STATE(1653)] = 38259, - [SMALL_STATE(1654)] = 38315, - [SMALL_STATE(1655)] = 38371, - [SMALL_STATE(1656)] = 38457, - [SMALL_STATE(1657)] = 38531, - [SMALL_STATE(1658)] = 38585, - [SMALL_STATE(1659)] = 38677, - [SMALL_STATE(1660)] = 38731, - [SMALL_STATE(1661)] = 38785, - [SMALL_STATE(1662)] = 38839, - [SMALL_STATE(1663)] = 38893, - [SMALL_STATE(1664)] = 38947, - [SMALL_STATE(1665)] = 39029, - [SMALL_STATE(1666)] = 39117, - [SMALL_STATE(1667)] = 39171, - [SMALL_STATE(1668)] = 39225, - [SMALL_STATE(1669)] = 39307, - [SMALL_STATE(1670)] = 39393, - [SMALL_STATE(1671)] = 39449, - [SMALL_STATE(1672)] = 39535, - [SMALL_STATE(1673)] = 39615, - [SMALL_STATE(1674)] = 39703, - [SMALL_STATE(1675)] = 39795, - [SMALL_STATE(1676)] = 39887, - [SMALL_STATE(1677)] = 39941, - [SMALL_STATE(1678)] = 40033, - [SMALL_STATE(1679)] = 40113, - [SMALL_STATE(1680)] = 40201, - [SMALL_STATE(1681)] = 40265, - [SMALL_STATE(1682)] = 40319, - [SMALL_STATE(1683)] = 40373, - [SMALL_STATE(1684)] = 40465, - [SMALL_STATE(1685)] = 40521, - [SMALL_STATE(1686)] = 40577, - [SMALL_STATE(1687)] = 40665, - [SMALL_STATE(1688)] = 40721, - [SMALL_STATE(1689)] = 40777, - [SMALL_STATE(1690)] = 40831, - [SMALL_STATE(1691)] = 40897, - [SMALL_STATE(1692)] = 40953, - [SMALL_STATE(1693)] = 41041, - [SMALL_STATE(1694)] = 41097, - [SMALL_STATE(1695)] = 41183, - [SMALL_STATE(1696)] = 41275, - [SMALL_STATE(1697)] = 41331, - [SMALL_STATE(1698)] = 41387, - [SMALL_STATE(1699)] = 41443, - [SMALL_STATE(1700)] = 41529, - [SMALL_STATE(1701)] = 41587, - [SMALL_STATE(1702)] = 41657, - [SMALL_STATE(1703)] = 41743, - [SMALL_STATE(1704)] = 41796, - [SMALL_STATE(1705)] = 41849, - [SMALL_STATE(1706)] = 41902, - [SMALL_STATE(1707)] = 41991, - [SMALL_STATE(1708)] = 42080, - [SMALL_STATE(1709)] = 42133, - [SMALL_STATE(1710)] = 42186, - [SMALL_STATE(1711)] = 42275, - [SMALL_STATE(1712)] = 42328, - [SMALL_STATE(1713)] = 42381, - [SMALL_STATE(1714)] = 42434, - [SMALL_STATE(1715)] = 42487, - [SMALL_STATE(1716)] = 42548, - [SMALL_STATE(1717)] = 42601, - [SMALL_STATE(1718)] = 42654, - [SMALL_STATE(1719)] = 42741, - [SMALL_STATE(1720)] = 42794, - [SMALL_STATE(1721)] = 42853, - [SMALL_STATE(1722)] = 42912, - [SMALL_STATE(1723)] = 42965, - [SMALL_STATE(1724)] = 43018, - [SMALL_STATE(1725)] = 43071, - [SMALL_STATE(1726)] = 43158, - [SMALL_STATE(1727)] = 43247, - [SMALL_STATE(1728)] = 43334, - [SMALL_STATE(1729)] = 43387, - [SMALL_STATE(1730)] = 43476, - [SMALL_STATE(1731)] = 43529, - [SMALL_STATE(1732)] = 43582, - [SMALL_STATE(1733)] = 43635, - [SMALL_STATE(1734)] = 43688, - [SMALL_STATE(1735)] = 43741, - [SMALL_STATE(1736)] = 43794, - [SMALL_STATE(1737)] = 43875, - [SMALL_STATE(1738)] = 43928, - [SMALL_STATE(1739)] = 43987, - [SMALL_STATE(1740)] = 44040, - [SMALL_STATE(1741)] = 44127, - [SMALL_STATE(1742)] = 44212, - [SMALL_STATE(1743)] = 44297, - [SMALL_STATE(1744)] = 44384, - [SMALL_STATE(1745)] = 44437, - [SMALL_STATE(1746)] = 44500, - [SMALL_STATE(1747)] = 44569, - [SMALL_STATE(1748)] = 44636, - [SMALL_STATE(1749)] = 44707, - [SMALL_STATE(1750)] = 44784, - [SMALL_STATE(1751)] = 44863, - [SMALL_STATE(1752)] = 44928, - [SMALL_STATE(1753)] = 45013, - [SMALL_STATE(1754)] = 45098, - [SMALL_STATE(1755)] = 45171, - [SMALL_STATE(1756)] = 45252, - [SMALL_STATE(1757)] = 45305, - [SMALL_STATE(1758)] = 45358, - [SMALL_STATE(1759)] = 45411, - [SMALL_STATE(1760)] = 45464, - [SMALL_STATE(1761)] = 45517, - [SMALL_STATE(1762)] = 45602, - [SMALL_STATE(1763)] = 45655, - [SMALL_STATE(1764)] = 45740, - [SMALL_STATE(1765)] = 45827, - [SMALL_STATE(1766)] = 45880, - [SMALL_STATE(1767)] = 45933, - [SMALL_STATE(1768)] = 45986, - [SMALL_STATE(1769)] = 46071, - [SMALL_STATE(1770)] = 46124, - [SMALL_STATE(1771)] = 46177, - [SMALL_STATE(1772)] = 46230, - [SMALL_STATE(1773)] = 46283, - [SMALL_STATE(1774)] = 46336, - [SMALL_STATE(1775)] = 46389, - [SMALL_STATE(1776)] = 46442, - [SMALL_STATE(1777)] = 46495, - [SMALL_STATE(1778)] = 46580, - [SMALL_STATE(1779)] = 46633, - [SMALL_STATE(1780)] = 46686, - [SMALL_STATE(1781)] = 46739, - [SMALL_STATE(1782)] = 46792, - [SMALL_STATE(1783)] = 46845, - [SMALL_STATE(1784)] = 46898, - [SMALL_STATE(1785)] = 46951, - [SMALL_STATE(1786)] = 47004, - [SMALL_STATE(1787)] = 47057, - [SMALL_STATE(1788)] = 47110, - [SMALL_STATE(1789)] = 47163, - [SMALL_STATE(1790)] = 47216, - [SMALL_STATE(1791)] = 47269, - [SMALL_STATE(1792)] = 47322, - [SMALL_STATE(1793)] = 47375, - [SMALL_STATE(1794)] = 47428, - [SMALL_STATE(1795)] = 47481, - [SMALL_STATE(1796)] = 47534, - [SMALL_STATE(1797)] = 47623, - [SMALL_STATE(1798)] = 47676, - [SMALL_STATE(1799)] = 47729, - [SMALL_STATE(1800)] = 47782, - [SMALL_STATE(1801)] = 47869, - [SMALL_STATE(1802)] = 47922, - [SMALL_STATE(1803)] = 47975, - [SMALL_STATE(1804)] = 48060, - [SMALL_STATE(1805)] = 48113, - [SMALL_STATE(1806)] = 48166, - [SMALL_STATE(1807)] = 48219, - [SMALL_STATE(1808)] = 48306, - [SMALL_STATE(1809)] = 48359, - [SMALL_STATE(1810)] = 48448, - [SMALL_STATE(1811)] = 48511, - [SMALL_STATE(1812)] = 48580, - [SMALL_STATE(1813)] = 48647, - [SMALL_STATE(1814)] = 48718, - [SMALL_STATE(1815)] = 48795, - [SMALL_STATE(1816)] = 48874, - [SMALL_STATE(1817)] = 48939, - [SMALL_STATE(1818)] = 49024, - [SMALL_STATE(1819)] = 49109, - [SMALL_STATE(1820)] = 49198, - [SMALL_STATE(1821)] = 49279, - [SMALL_STATE(1822)] = 49332, - [SMALL_STATE(1823)] = 49385, - [SMALL_STATE(1824)] = 49438, - [SMALL_STATE(1825)] = 49491, - [SMALL_STATE(1826)] = 49578, - [SMALL_STATE(1827)] = 49631, - [SMALL_STATE(1828)] = 49684, - [SMALL_STATE(1829)] = 49737, - [SMALL_STATE(1830)] = 49790, - [SMALL_STATE(1831)] = 49843, - [SMALL_STATE(1832)] = 49896, - [SMALL_STATE(1833)] = 49949, - [SMALL_STATE(1834)] = 50002, - [SMALL_STATE(1835)] = 50055, - [SMALL_STATE(1836)] = 50108, - [SMALL_STATE(1837)] = 50161, - [SMALL_STATE(1838)] = 50214, - [SMALL_STATE(1839)] = 50267, - [SMALL_STATE(1840)] = 50354, - [SMALL_STATE(1841)] = 50407, - [SMALL_STATE(1842)] = 50460, - [SMALL_STATE(1843)] = 50547, - [SMALL_STATE(1844)] = 50600, - [SMALL_STATE(1845)] = 50653, - [SMALL_STATE(1846)] = 50740, - [SMALL_STATE(1847)] = 50793, - [SMALL_STATE(1848)] = 50846, - [SMALL_STATE(1849)] = 50935, - [SMALL_STATE(1850)] = 50988, - [SMALL_STATE(1851)] = 51075, - [SMALL_STATE(1852)] = 51128, - [SMALL_STATE(1853)] = 51181, - [SMALL_STATE(1854)] = 51270, - [SMALL_STATE(1855)] = 51359, - [SMALL_STATE(1856)] = 51412, - [SMALL_STATE(1857)] = 51465, - [SMALL_STATE(1858)] = 51554, - [SMALL_STATE(1859)] = 51607, - [SMALL_STATE(1860)] = 51696, - [SMALL_STATE(1861)] = 51773, - [SMALL_STATE(1862)] = 51862, - [SMALL_STATE(1863)] = 51949, - [SMALL_STATE(1864)] = 52036, - [SMALL_STATE(1865)] = 52095, - [SMALL_STATE(1866)] = 52184, - [SMALL_STATE(1867)] = 52237, - [SMALL_STATE(1868)] = 52326, - [SMALL_STATE(1869)] = 52379, - [SMALL_STATE(1870)] = 52468, - [SMALL_STATE(1871)] = 52557, - [SMALL_STATE(1872)] = 52646, - [SMALL_STATE(1873)] = 52735, - [SMALL_STATE(1874)] = 52824, - [SMALL_STATE(1875)] = 52913, - [SMALL_STATE(1876)] = 53002, - [SMALL_STATE(1877)] = 53055, - [SMALL_STATE(1878)] = 53108, - [SMALL_STATE(1879)] = 53197, - [SMALL_STATE(1880)] = 53286, - [SMALL_STATE(1881)] = 53339, - [SMALL_STATE(1882)] = 53428, - [SMALL_STATE(1883)] = 53509, - [SMALL_STATE(1884)] = 53594, - [SMALL_STATE(1885)] = 53683, - [SMALL_STATE(1886)] = 53768, - [SMALL_STATE(1887)] = 53853, - [SMALL_STATE(1888)] = 53942, - [SMALL_STATE(1889)] = 54031, - [SMALL_STATE(1890)] = 54120, - [SMALL_STATE(1891)] = 54209, - [SMALL_STATE(1892)] = 54298, - [SMALL_STATE(1893)] = 54387, - [SMALL_STATE(1894)] = 54476, - [SMALL_STATE(1895)] = 54565, - [SMALL_STATE(1896)] = 54654, - [SMALL_STATE(1897)] = 54743, - [SMALL_STATE(1898)] = 54832, - [SMALL_STATE(1899)] = 54921, - [SMALL_STATE(1900)] = 55010, - [SMALL_STATE(1901)] = 55099, - [SMALL_STATE(1902)] = 55188, - [SMALL_STATE(1903)] = 55277, - [SMALL_STATE(1904)] = 55366, - [SMALL_STATE(1905)] = 55455, - [SMALL_STATE(1906)] = 55542, - [SMALL_STATE(1907)] = 55631, - [SMALL_STATE(1908)] = 55720, - [SMALL_STATE(1909)] = 55773, - [SMALL_STATE(1910)] = 55850, - [SMALL_STATE(1911)] = 55939, - [SMALL_STATE(1912)] = 56028, - [SMALL_STATE(1913)] = 56081, - [SMALL_STATE(1914)] = 56168, - [SMALL_STATE(1915)] = 56221, - [SMALL_STATE(1916)] = 56310, - [SMALL_STATE(1917)] = 56397, - [SMALL_STATE(1918)] = 56484, - [SMALL_STATE(1919)] = 56557, - [SMALL_STATE(1920)] = 56643, - [SMALL_STATE(1921)] = 56729, - [SMALL_STATE(1922)] = 56815, - [SMALL_STATE(1923)] = 56901, - [SMALL_STATE(1924)] = 56987, - [SMALL_STATE(1925)] = 57073, - [SMALL_STATE(1926)] = 57159, - [SMALL_STATE(1927)] = 57245, - [SMALL_STATE(1928)] = 57331, - [SMALL_STATE(1929)] = 57417, - [SMALL_STATE(1930)] = 57503, - [SMALL_STATE(1931)] = 57589, - [SMALL_STATE(1932)] = 57675, - [SMALL_STATE(1933)] = 57761, - [SMALL_STATE(1934)] = 57845, - [SMALL_STATE(1935)] = 57931, - [SMALL_STATE(1936)] = 58017, - [SMALL_STATE(1937)] = 58103, - [SMALL_STATE(1938)] = 58189, - [SMALL_STATE(1939)] = 58263, - [SMALL_STATE(1940)] = 58349, - [SMALL_STATE(1941)] = 58433, - [SMALL_STATE(1942)] = 58507, - [SMALL_STATE(1943)] = 58593, - [SMALL_STATE(1944)] = 58679, - [SMALL_STATE(1945)] = 58765, - [SMALL_STATE(1946)] = 58851, - [SMALL_STATE(1947)] = 58937, - [SMALL_STATE(1948)] = 59011, - [SMALL_STATE(1949)] = 59097, - [SMALL_STATE(1950)] = 59171, - [SMALL_STATE(1951)] = 59257, - [SMALL_STATE(1952)] = 59343, - [SMALL_STATE(1953)] = 59429, - [SMALL_STATE(1954)] = 59503, - [SMALL_STATE(1955)] = 59589, - [SMALL_STATE(1956)] = 59675, - [SMALL_STATE(1957)] = 59750, - [SMALL_STATE(1958)] = 59825, - [SMALL_STATE(1959)] = 59900, - [SMALL_STATE(1960)] = 59975, - [SMALL_STATE(1961)] = 60050, - [SMALL_STATE(1962)] = 60125, - [SMALL_STATE(1963)] = 60200, - [SMALL_STATE(1964)] = 60275, - [SMALL_STATE(1965)] = 60322, - [SMALL_STATE(1966)] = 60369, - [SMALL_STATE(1967)] = 60416, - [SMALL_STATE(1968)] = 60478, - [SMALL_STATE(1969)] = 60540, - [SMALL_STATE(1970)] = 60602, - [SMALL_STATE(1971)] = 60664, - [SMALL_STATE(1972)] = 60726, - [SMALL_STATE(1973)] = 60788, - [SMALL_STATE(1974)] = 60850, - [SMALL_STATE(1975)] = 60912, - [SMALL_STATE(1976)] = 60974, - [SMALL_STATE(1977)] = 61033, - [SMALL_STATE(1978)] = 61092, - [SMALL_STATE(1979)] = 61128, - [SMALL_STATE(1980)] = 61164, - [SMALL_STATE(1981)] = 61201, - [SMALL_STATE(1982)] = 61238, - [SMALL_STATE(1983)] = 61275, - [SMALL_STATE(1984)] = 61312, - [SMALL_STATE(1985)] = 61365, - [SMALL_STATE(1986)] = 61399, - [SMALL_STATE(1987)] = 61433, - [SMALL_STATE(1988)] = 61469, - [SMALL_STATE(1989)] = 61503, - [SMALL_STATE(1990)] = 61547, - [SMALL_STATE(1991)] = 61583, - [SMALL_STATE(1992)] = 61619, - [SMALL_STATE(1993)] = 61663, - [SMALL_STATE(1994)] = 61699, - [SMALL_STATE(1995)] = 61743, - [SMALL_STATE(1996)] = 61777, - [SMALL_STATE(1997)] = 61808, - [SMALL_STATE(1998)] = 61841, - [SMALL_STATE(1999)] = 61874, - [SMALL_STATE(2000)] = 61925, - [SMALL_STATE(2001)] = 61958, - [SMALL_STATE(2002)] = 61991, - [SMALL_STATE(2003)] = 62032, - [SMALL_STATE(2004)] = 62070, - [SMALL_STATE(2005)] = 62108, - [SMALL_STATE(2006)] = 62152, - [SMALL_STATE(2007)] = 62184, - [SMALL_STATE(2008)] = 62222, - [SMALL_STATE(2009)] = 62254, - [SMALL_STATE(2010)] = 62314, - [SMALL_STATE(2011)] = 62360, - [SMALL_STATE(2012)] = 62398, - [SMALL_STATE(2013)] = 62430, - [SMALL_STATE(2014)] = 62490, - [SMALL_STATE(2015)] = 62519, - [SMALL_STATE(2016)] = 62548, - [SMALL_STATE(2017)] = 62581, - [SMALL_STATE(2018)] = 62622, - [SMALL_STATE(2019)] = 62653, - [SMALL_STATE(2020)] = 62682, - [SMALL_STATE(2021)] = 62715, - [SMALL_STATE(2022)] = 62744, - [SMALL_STATE(2023)] = 62797, - [SMALL_STATE(2024)] = 62830, - [SMALL_STATE(2025)] = 62863, - [SMALL_STATE(2026)] = 62892, - [SMALL_STATE(2027)] = 62925, - [SMALL_STATE(2028)] = 62954, - [SMALL_STATE(2029)] = 62983, - [SMALL_STATE(2030)] = 63016, - [SMALL_STATE(2031)] = 63045, - [SMALL_STATE(2032)] = 63074, - [SMALL_STATE(2033)] = 63129, - [SMALL_STATE(2034)] = 63172, - [SMALL_STATE(2035)] = 63225, - [SMALL_STATE(2036)] = 63253, - [SMALL_STATE(2037)] = 63281, - [SMALL_STATE(2038)] = 63309, - [SMALL_STATE(2039)] = 63337, - [SMALL_STATE(2040)] = 63365, - [SMALL_STATE(2041)] = 63409, - [SMALL_STATE(2042)] = 63437, - [SMALL_STATE(2043)] = 63465, - [SMALL_STATE(2044)] = 63493, - [SMALL_STATE(2045)] = 63521, - [SMALL_STATE(2046)] = 63549, - [SMALL_STATE(2047)] = 63577, - [SMALL_STATE(2048)] = 63605, - [SMALL_STATE(2049)] = 63633, - [SMALL_STATE(2050)] = 63661, - [SMALL_STATE(2051)] = 63689, - [SMALL_STATE(2052)] = 63719, - [SMALL_STATE(2053)] = 63747, - [SMALL_STATE(2054)] = 63775, - [SMALL_STATE(2055)] = 63803, - [SMALL_STATE(2056)] = 63831, - [SMALL_STATE(2057)] = 63859, - [SMALL_STATE(2058)] = 63887, - [SMALL_STATE(2059)] = 63915, - [SMALL_STATE(2060)] = 63943, - [SMALL_STATE(2061)] = 63971, - [SMALL_STATE(2062)] = 63999, - [SMALL_STATE(2063)] = 64027, - [SMALL_STATE(2064)] = 64055, - [SMALL_STATE(2065)] = 64083, - [SMALL_STATE(2066)] = 64113, - [SMALL_STATE(2067)] = 64141, - [SMALL_STATE(2068)] = 64169, - [SMALL_STATE(2069)] = 64197, - [SMALL_STATE(2070)] = 64225, - [SMALL_STATE(2071)] = 64253, - [SMALL_STATE(2072)] = 64281, - [SMALL_STATE(2073)] = 64309, - [SMALL_STATE(2074)] = 64344, - [SMALL_STATE(2075)] = 64375, - [SMALL_STATE(2076)] = 64404, - [SMALL_STATE(2077)] = 64433, - [SMALL_STATE(2078)] = 64462, - [SMALL_STATE(2079)] = 64491, - [SMALL_STATE(2080)] = 64520, - [SMALL_STATE(2081)] = 64549, - [SMALL_STATE(2082)] = 64578, - [SMALL_STATE(2083)] = 64607, - [SMALL_STATE(2084)] = 64636, - [SMALL_STATE(2085)] = 64665, - [SMALL_STATE(2086)] = 64697, - [SMALL_STATE(2087)] = 64729, - [SMALL_STATE(2088)] = 64761, - [SMALL_STATE(2089)] = 64807, - [SMALL_STATE(2090)] = 64839, - [SMALL_STATE(2091)] = 64871, - [SMALL_STATE(2092)] = 64903, - [SMALL_STATE(2093)] = 64947, - [SMALL_STATE(2094)] = 64975, - [SMALL_STATE(2095)] = 65007, - [SMALL_STATE(2096)] = 65039, - [SMALL_STATE(2097)] = 65071, - [SMALL_STATE(2098)] = 65101, - [SMALL_STATE(2099)] = 65133, - [SMALL_STATE(2100)] = 65165, - [SMALL_STATE(2101)] = 65197, - [SMALL_STATE(2102)] = 65234, - [SMALL_STATE(2103)] = 65263, - [SMALL_STATE(2104)] = 65306, - [SMALL_STATE(2105)] = 65349, - [SMALL_STATE(2106)] = 65392, - [SMALL_STATE(2107)] = 65435, - [SMALL_STATE(2108)] = 65464, - [SMALL_STATE(2109)] = 65507, - [SMALL_STATE(2110)] = 65550, - [SMALL_STATE(2111)] = 65580, - [SMALL_STATE(2112)] = 65604, - [SMALL_STATE(2113)] = 65632, - [SMALL_STATE(2114)] = 65660, - [SMALL_STATE(2115)] = 65688, - [SMALL_STATE(2116)] = 65716, - [SMALL_STATE(2117)] = 65754, - [SMALL_STATE(2118)] = 65782, - [SMALL_STATE(2119)] = 65806, - [SMALL_STATE(2120)] = 65836, - [SMALL_STATE(2121)] = 65874, - [SMALL_STATE(2122)] = 65914, - [SMALL_STATE(2123)] = 65942, - [SMALL_STATE(2124)] = 65982, - [SMALL_STATE(2125)] = 66010, - [SMALL_STATE(2126)] = 66038, - [SMALL_STATE(2127)] = 66066, - [SMALL_STATE(2128)] = 66100, - [SMALL_STATE(2129)] = 66124, - [SMALL_STATE(2130)] = 66164, - [SMALL_STATE(2131)] = 66204, - [SMALL_STATE(2132)] = 66244, - [SMALL_STATE(2133)] = 66284, - [SMALL_STATE(2134)] = 66322, - [SMALL_STATE(2135)] = 66356, - [SMALL_STATE(2136)] = 66394, - [SMALL_STATE(2137)] = 66422, - [SMALL_STATE(2138)] = 66460, - [SMALL_STATE(2139)] = 66488, - [SMALL_STATE(2140)] = 66516, - [SMALL_STATE(2141)] = 66544, - [SMALL_STATE(2142)] = 66582, - [SMALL_STATE(2143)] = 66622, - [SMALL_STATE(2144)] = 66662, - [SMALL_STATE(2145)] = 66690, - [SMALL_STATE(2146)] = 66720, - [SMALL_STATE(2147)] = 66744, - [SMALL_STATE(2148)] = 66782, - [SMALL_STATE(2149)] = 66812, - [SMALL_STATE(2150)] = 66850, - [SMALL_STATE(2151)] = 66888, - [SMALL_STATE(2152)] = 66926, - [SMALL_STATE(2153)] = 66954, - [SMALL_STATE(2154)] = 66992, - [SMALL_STATE(2155)] = 67032, - [SMALL_STATE(2156)] = 67056, - [SMALL_STATE(2157)] = 67084, - [SMALL_STATE(2158)] = 67122, - [SMALL_STATE(2159)] = 67162, - [SMALL_STATE(2160)] = 67185, - [SMALL_STATE(2161)] = 67208, - [SMALL_STATE(2162)] = 67231, - [SMALL_STATE(2163)] = 67254, - [SMALL_STATE(2164)] = 67277, - [SMALL_STATE(2165)] = 67300, - [SMALL_STATE(2166)] = 67323, - [SMALL_STATE(2167)] = 67346, - [SMALL_STATE(2168)] = 67369, - [SMALL_STATE(2169)] = 67392, - [SMALL_STATE(2170)] = 67415, - [SMALL_STATE(2171)] = 67438, - [SMALL_STATE(2172)] = 67461, - [SMALL_STATE(2173)] = 67496, - [SMALL_STATE(2174)] = 67519, - [SMALL_STATE(2175)] = 67556, - [SMALL_STATE(2176)] = 67579, - [SMALL_STATE(2177)] = 67614, - [SMALL_STATE(2178)] = 67637, - [SMALL_STATE(2179)] = 67660, - [SMALL_STATE(2180)] = 67683, - [SMALL_STATE(2181)] = 67706, - [SMALL_STATE(2182)] = 67737, - [SMALL_STATE(2183)] = 67778, - [SMALL_STATE(2184)] = 67801, - [SMALL_STATE(2185)] = 67832, - [SMALL_STATE(2186)] = 67855, - [SMALL_STATE(2187)] = 67878, - [SMALL_STATE(2188)] = 67913, - [SMALL_STATE(2189)] = 67936, - [SMALL_STATE(2190)] = 67969, - [SMALL_STATE(2191)] = 67992, - [SMALL_STATE(2192)] = 68015, - [SMALL_STATE(2193)] = 68038, - [SMALL_STATE(2194)] = 68073, - [SMALL_STATE(2195)] = 68104, - [SMALL_STATE(2196)] = 68141, - [SMALL_STATE(2197)] = 68164, - [SMALL_STATE(2198)] = 68187, - [SMALL_STATE(2199)] = 68210, - [SMALL_STATE(2200)] = 68241, - [SMALL_STATE(2201)] = 68264, - [SMALL_STATE(2202)] = 68305, - [SMALL_STATE(2203)] = 68328, - [SMALL_STATE(2204)] = 68351, - [SMALL_STATE(2205)] = 68374, - [SMALL_STATE(2206)] = 68411, - [SMALL_STATE(2207)] = 68442, - [SMALL_STATE(2208)] = 68483, - [SMALL_STATE(2209)] = 68506, - [SMALL_STATE(2210)] = 68529, - [SMALL_STATE(2211)] = 68552, - [SMALL_STATE(2212)] = 68589, - [SMALL_STATE(2213)] = 68630, - [SMALL_STATE(2214)] = 68661, - [SMALL_STATE(2215)] = 68695, - [SMALL_STATE(2216)] = 68725, - [SMALL_STATE(2217)] = 68749, - [SMALL_STATE(2218)] = 68781, - [SMALL_STATE(2219)] = 68819, - [SMALL_STATE(2220)] = 68857, - [SMALL_STATE(2221)] = 68887, - [SMALL_STATE(2222)] = 68913, - [SMALL_STATE(2223)] = 68939, - [SMALL_STATE(2224)] = 68977, - [SMALL_STATE(2225)] = 69015, - [SMALL_STATE(2226)] = 69053, - [SMALL_STATE(2227)] = 69081, - [SMALL_STATE(2228)] = 69113, - [SMALL_STATE(2229)] = 69141, - [SMALL_STATE(2230)] = 69179, - [SMALL_STATE(2231)] = 69211, - [SMALL_STATE(2232)] = 69249, - [SMALL_STATE(2233)] = 69281, - [SMALL_STATE(2234)] = 69307, - [SMALL_STATE(2235)] = 69343, - [SMALL_STATE(2236)] = 69381, - [SMALL_STATE(2237)] = 69419, - [SMALL_STATE(2238)] = 69449, - [SMALL_STATE(2239)] = 69481, - [SMALL_STATE(2240)] = 69519, - [SMALL_STATE(2241)] = 69543, - [SMALL_STATE(2242)] = 69581, - [SMALL_STATE(2243)] = 69605, - [SMALL_STATE(2244)] = 69643, - [SMALL_STATE(2245)] = 69677, - [SMALL_STATE(2246)] = 69715, - [SMALL_STATE(2247)] = 69753, - [SMALL_STATE(2248)] = 69781, - [SMALL_STATE(2249)] = 69813, - [SMALL_STATE(2250)] = 69841, - [SMALL_STATE(2251)] = 69869, - [SMALL_STATE(2252)] = 69907, - [SMALL_STATE(2253)] = 69939, - [SMALL_STATE(2254)] = 69969, - [SMALL_STATE(2255)] = 69993, - [SMALL_STATE(2256)] = 70017, - [SMALL_STATE(2257)] = 70049, - [SMALL_STATE(2258)] = 70081, - [SMALL_STATE(2259)] = 70113, - [SMALL_STATE(2260)] = 70151, - [SMALL_STATE(2261)] = 70183, - [SMALL_STATE(2262)] = 70215, - [SMALL_STATE(2263)] = 70243, - [SMALL_STATE(2264)] = 70271, - [SMALL_STATE(2265)] = 70303, - [SMALL_STATE(2266)] = 70338, - [SMALL_STATE(2267)] = 70373, - [SMALL_STATE(2268)] = 70398, - [SMALL_STATE(2269)] = 70433, - [SMALL_STATE(2270)] = 70468, - [SMALL_STATE(2271)] = 70503, - [SMALL_STATE(2272)] = 70538, - [SMALL_STATE(2273)] = 70573, - [SMALL_STATE(2274)] = 70608, - [SMALL_STATE(2275)] = 70643, - [SMALL_STATE(2276)] = 70678, - [SMALL_STATE(2277)] = 70713, - [SMALL_STATE(2278)] = 70748, - [SMALL_STATE(2279)] = 70783, - [SMALL_STATE(2280)] = 70818, - [SMALL_STATE(2281)] = 70851, - [SMALL_STATE(2282)] = 70886, - [SMALL_STATE(2283)] = 70921, - [SMALL_STATE(2284)] = 70956, - [SMALL_STATE(2285)] = 70991, - [SMALL_STATE(2286)] = 71012, - [SMALL_STATE(2287)] = 71033, - [SMALL_STATE(2288)] = 71054, - [SMALL_STATE(2289)] = 71087, - [SMALL_STATE(2290)] = 71122, - [SMALL_STATE(2291)] = 71157, - [SMALL_STATE(2292)] = 71186, - [SMALL_STATE(2293)] = 71221, - [SMALL_STATE(2294)] = 71256, - [SMALL_STATE(2295)] = 71291, - [SMALL_STATE(2296)] = 71326, - [SMALL_STATE(2297)] = 71361, - [SMALL_STATE(2298)] = 71396, - [SMALL_STATE(2299)] = 71431, - [SMALL_STATE(2300)] = 71466, - [SMALL_STATE(2301)] = 71501, - [SMALL_STATE(2302)] = 71536, - [SMALL_STATE(2303)] = 71561, - [SMALL_STATE(2304)] = 71596, - [SMALL_STATE(2305)] = 71623, - [SMALL_STATE(2306)] = 71648, - [SMALL_STATE(2307)] = 71669, - [SMALL_STATE(2308)] = 71704, - [SMALL_STATE(2309)] = 71739, - [SMALL_STATE(2310)] = 71774, - [SMALL_STATE(2311)] = 71809, - [SMALL_STATE(2312)] = 71844, - [SMALL_STATE(2313)] = 71879, - [SMALL_STATE(2314)] = 71914, - [SMALL_STATE(2315)] = 71947, - [SMALL_STATE(2316)] = 71982, - [SMALL_STATE(2317)] = 72015, - [SMALL_STATE(2318)] = 72050, - [SMALL_STATE(2319)] = 72083, - [SMALL_STATE(2320)] = 72115, - [SMALL_STATE(2321)] = 72147, - [SMALL_STATE(2322)] = 72169, - [SMALL_STATE(2323)] = 72201, - [SMALL_STATE(2324)] = 72229, - [SMALL_STATE(2325)] = 72259, - [SMALL_STATE(2326)] = 72287, - [SMALL_STATE(2327)] = 72313, - [SMALL_STATE(2328)] = 72345, - [SMALL_STATE(2329)] = 72371, - [SMALL_STATE(2330)] = 72403, - [SMALL_STATE(2331)] = 72433, - [SMALL_STATE(2332)] = 72455, - [SMALL_STATE(2333)] = 72477, - [SMALL_STATE(2334)] = 72509, - [SMALL_STATE(2335)] = 72541, - [SMALL_STATE(2336)] = 72569, - [SMALL_STATE(2337)] = 72601, - [SMALL_STATE(2338)] = 72633, - [SMALL_STATE(2339)] = 72655, - [SMALL_STATE(2340)] = 72687, - [SMALL_STATE(2341)] = 72713, - [SMALL_STATE(2342)] = 72745, - [SMALL_STATE(2343)] = 72777, - [SMALL_STATE(2344)] = 72807, - [SMALL_STATE(2345)] = 72829, - [SMALL_STATE(2346)] = 72857, - [SMALL_STATE(2347)] = 72889, - [SMALL_STATE(2348)] = 72921, - [SMALL_STATE(2349)] = 72951, - [SMALL_STATE(2350)] = 72981, - [SMALL_STATE(2351)] = 73011, - [SMALL_STATE(2352)] = 73041, - [SMALL_STATE(2353)] = 73073, - [SMALL_STATE(2354)] = 73101, - [SMALL_STATE(2355)] = 73133, - [SMALL_STATE(2356)] = 73165, - [SMALL_STATE(2357)] = 73191, - [SMALL_STATE(2358)] = 73223, - [SMALL_STATE(2359)] = 73255, - [SMALL_STATE(2360)] = 73287, - [SMALL_STATE(2361)] = 73319, - [SMALL_STATE(2362)] = 73349, - [SMALL_STATE(2363)] = 73379, - [SMALL_STATE(2364)] = 73411, - [SMALL_STATE(2365)] = 73443, - [SMALL_STATE(2366)] = 73475, - [SMALL_STATE(2367)] = 73497, - [SMALL_STATE(2368)] = 73529, - [SMALL_STATE(2369)] = 73561, - [SMALL_STATE(2370)] = 73593, - [SMALL_STATE(2371)] = 73625, - [SMALL_STATE(2372)] = 73657, - [SMALL_STATE(2373)] = 73689, - [SMALL_STATE(2374)] = 73721, - [SMALL_STATE(2375)] = 73753, - [SMALL_STATE(2376)] = 73785, - [SMALL_STATE(2377)] = 73815, - [SMALL_STATE(2378)] = 73844, - [SMALL_STATE(2379)] = 73867, - [SMALL_STATE(2380)] = 73896, - [SMALL_STATE(2381)] = 73917, - [SMALL_STATE(2382)] = 73938, - [SMALL_STATE(2383)] = 73959, - [SMALL_STATE(2384)] = 73980, - [SMALL_STATE(2385)] = 73999, - [SMALL_STATE(2386)] = 74020, - [SMALL_STATE(2387)] = 74041, - [SMALL_STATE(2388)] = 74064, - [SMALL_STATE(2389)] = 74091, - [SMALL_STATE(2390)] = 74112, - [SMALL_STATE(2391)] = 74141, - [SMALL_STATE(2392)] = 74170, - [SMALL_STATE(2393)] = 74199, - [SMALL_STATE(2394)] = 74222, - [SMALL_STATE(2395)] = 74251, - [SMALL_STATE(2396)] = 74276, - [SMALL_STATE(2397)] = 74305, - [SMALL_STATE(2398)] = 74334, - [SMALL_STATE(2399)] = 74363, - [SMALL_STATE(2400)] = 74392, - [SMALL_STATE(2401)] = 74421, - [SMALL_STATE(2402)] = 74450, - [SMALL_STATE(2403)] = 74477, - [SMALL_STATE(2404)] = 74506, - [SMALL_STATE(2405)] = 74535, - [SMALL_STATE(2406)] = 74564, - [SMALL_STATE(2407)] = 74593, - [SMALL_STATE(2408)] = 74614, - [SMALL_STATE(2409)] = 74643, - [SMALL_STATE(2410)] = 74672, - [SMALL_STATE(2411)] = 74701, - [SMALL_STATE(2412)] = 74730, - [SMALL_STATE(2413)] = 74759, - [SMALL_STATE(2414)] = 74788, - [SMALL_STATE(2415)] = 74817, - [SMALL_STATE(2416)] = 74838, - [SMALL_STATE(2417)] = 74859, - [SMALL_STATE(2418)] = 74888, - [SMALL_STATE(2419)] = 74917, - [SMALL_STATE(2420)] = 74946, - [SMALL_STATE(2421)] = 74975, - [SMALL_STATE(2422)] = 75004, - [SMALL_STATE(2423)] = 75033, - [SMALL_STATE(2424)] = 75062, - [SMALL_STATE(2425)] = 75085, - [SMALL_STATE(2426)] = 75114, - [SMALL_STATE(2427)] = 75143, - [SMALL_STATE(2428)] = 75172, - [SMALL_STATE(2429)] = 75201, - [SMALL_STATE(2430)] = 75222, - [SMALL_STATE(2431)] = 75245, - [SMALL_STATE(2432)] = 75274, - [SMALL_STATE(2433)] = 75303, - [SMALL_STATE(2434)] = 75330, - [SMALL_STATE(2435)] = 75359, - [SMALL_STATE(2436)] = 75384, - [SMALL_STATE(2437)] = 75413, - [SMALL_STATE(2438)] = 75440, - [SMALL_STATE(2439)] = 75461, - [SMALL_STATE(2440)] = 75482, - [SMALL_STATE(2441)] = 75511, - [SMALL_STATE(2442)] = 75540, - [SMALL_STATE(2443)] = 75569, - [SMALL_STATE(2444)] = 75598, - [SMALL_STATE(2445)] = 75627, - [SMALL_STATE(2446)] = 75656, - [SMALL_STATE(2447)] = 75677, - [SMALL_STATE(2448)] = 75698, - [SMALL_STATE(2449)] = 75721, - [SMALL_STATE(2450)] = 75750, - [SMALL_STATE(2451)] = 75773, - [SMALL_STATE(2452)] = 75796, - [SMALL_STATE(2453)] = 75825, - [SMALL_STATE(2454)] = 75854, - [SMALL_STATE(2455)] = 75881, - [SMALL_STATE(2456)] = 75910, - [SMALL_STATE(2457)] = 75939, - [SMALL_STATE(2458)] = 75962, - [SMALL_STATE(2459)] = 75987, - [SMALL_STATE(2460)] = 76016, - [SMALL_STATE(2461)] = 76041, - [SMALL_STATE(2462)] = 76064, - [SMALL_STATE(2463)] = 76093, - [SMALL_STATE(2464)] = 76122, - [SMALL_STATE(2465)] = 76151, - [SMALL_STATE(2466)] = 76174, - [SMALL_STATE(2467)] = 76203, - [SMALL_STATE(2468)] = 76222, - [SMALL_STATE(2469)] = 76251, - [SMALL_STATE(2470)] = 76274, - [SMALL_STATE(2471)] = 76303, - [SMALL_STATE(2472)] = 76326, - [SMALL_STATE(2473)] = 76349, - [SMALL_STATE(2474)] = 76378, - [SMALL_STATE(2475)] = 76401, - [SMALL_STATE(2476)] = 76424, - [SMALL_STATE(2477)] = 76445, - [SMALL_STATE(2478)] = 76472, - [SMALL_STATE(2479)] = 76494, - [SMALL_STATE(2480)] = 76520, - [SMALL_STATE(2481)] = 76546, - [SMALL_STATE(2482)] = 76572, - [SMALL_STATE(2483)] = 76598, - [SMALL_STATE(2484)] = 76624, - [SMALL_STATE(2485)] = 76650, - [SMALL_STATE(2486)] = 76676, - [SMALL_STATE(2487)] = 76698, - [SMALL_STATE(2488)] = 76716, - [SMALL_STATE(2489)] = 76734, - [SMALL_STATE(2490)] = 76754, - [SMALL_STATE(2491)] = 76778, - [SMALL_STATE(2492)] = 76804, - [SMALL_STATE(2493)] = 76828, - [SMALL_STATE(2494)] = 76846, - [SMALL_STATE(2495)] = 76872, - [SMALL_STATE(2496)] = 76894, - [SMALL_STATE(2497)] = 76918, - [SMALL_STATE(2498)] = 76938, - [SMALL_STATE(2499)] = 76964, - [SMALL_STATE(2500)] = 76984, - [SMALL_STATE(2501)] = 77008, - [SMALL_STATE(2502)] = 77034, - [SMALL_STATE(2503)] = 77058, - [SMALL_STATE(2504)] = 77084, - [SMALL_STATE(2505)] = 77110, - [SMALL_STATE(2506)] = 77136, - [SMALL_STATE(2507)] = 77154, - [SMALL_STATE(2508)] = 77180, - [SMALL_STATE(2509)] = 77204, - [SMALL_STATE(2510)] = 77228, - [SMALL_STATE(2511)] = 77254, - [SMALL_STATE(2512)] = 77276, - [SMALL_STATE(2513)] = 77298, - [SMALL_STATE(2514)] = 77320, - [SMALL_STATE(2515)] = 77346, - [SMALL_STATE(2516)] = 77372, - [SMALL_STATE(2517)] = 77394, - [SMALL_STATE(2518)] = 77420, - [SMALL_STATE(2519)] = 77446, - [SMALL_STATE(2520)] = 77472, - [SMALL_STATE(2521)] = 77498, - [SMALL_STATE(2522)] = 77516, - [SMALL_STATE(2523)] = 77538, - [SMALL_STATE(2524)] = 77564, - [SMALL_STATE(2525)] = 77582, - [SMALL_STATE(2526)] = 77608, - [SMALL_STATE(2527)] = 77632, - [SMALL_STATE(2528)] = 77650, - [SMALL_STATE(2529)] = 77668, - [SMALL_STATE(2530)] = 77686, - [SMALL_STATE(2531)] = 77712, - [SMALL_STATE(2532)] = 77736, - [SMALL_STATE(2533)] = 77762, - [SMALL_STATE(2534)] = 77788, - [SMALL_STATE(2535)] = 77806, - [SMALL_STATE(2536)] = 77824, - [SMALL_STATE(2537)] = 77842, - [SMALL_STATE(2538)] = 77868, - [SMALL_STATE(2539)] = 77892, - [SMALL_STATE(2540)] = 77918, - [SMALL_STATE(2541)] = 77936, - [SMALL_STATE(2542)] = 77962, - [SMALL_STATE(2543)] = 77986, - [SMALL_STATE(2544)] = 78004, - [SMALL_STATE(2545)] = 78030, - [SMALL_STATE(2546)] = 78056, - [SMALL_STATE(2547)] = 78082, - [SMALL_STATE(2548)] = 78106, - [SMALL_STATE(2549)] = 78130, - [SMALL_STATE(2550)] = 78148, - [SMALL_STATE(2551)] = 78174, - [SMALL_STATE(2552)] = 78192, - [SMALL_STATE(2553)] = 78210, - [SMALL_STATE(2554)] = 78236, - [SMALL_STATE(2555)] = 78260, - [SMALL_STATE(2556)] = 78280, - [SMALL_STATE(2557)] = 78306, - [SMALL_STATE(2558)] = 78330, - [SMALL_STATE(2559)] = 78356, - [SMALL_STATE(2560)] = 78382, - [SMALL_STATE(2561)] = 78408, - [SMALL_STATE(2562)] = 78426, - [SMALL_STATE(2563)] = 78444, - [SMALL_STATE(2564)] = 78470, - [SMALL_STATE(2565)] = 78496, - [SMALL_STATE(2566)] = 78514, - [SMALL_STATE(2567)] = 78540, - [SMALL_STATE(2568)] = 78558, - [SMALL_STATE(2569)] = 78584, - [SMALL_STATE(2570)] = 78610, - [SMALL_STATE(2571)] = 78628, - [SMALL_STATE(2572)] = 78654, - [SMALL_STATE(2573)] = 78680, - [SMALL_STATE(2574)] = 78706, - [SMALL_STATE(2575)] = 78732, - [SMALL_STATE(2576)] = 78758, - [SMALL_STATE(2577)] = 78776, - [SMALL_STATE(2578)] = 78800, - [SMALL_STATE(2579)] = 78826, - [SMALL_STATE(2580)] = 78844, - [SMALL_STATE(2581)] = 78870, - [SMALL_STATE(2582)] = 78896, - [SMALL_STATE(2583)] = 78914, - [SMALL_STATE(2584)] = 78940, - [SMALL_STATE(2585)] = 78958, - [SMALL_STATE(2586)] = 78984, - [SMALL_STATE(2587)] = 79010, - [SMALL_STATE(2588)] = 79033, - [SMALL_STATE(2589)] = 79056, - [SMALL_STATE(2590)] = 79079, - [SMALL_STATE(2591)] = 79098, - [SMALL_STATE(2592)] = 79121, - [SMALL_STATE(2593)] = 79144, - [SMALL_STATE(2594)] = 79167, - [SMALL_STATE(2595)] = 79190, - [SMALL_STATE(2596)] = 79213, - [SMALL_STATE(2597)] = 79236, - [SMALL_STATE(2598)] = 79259, - [SMALL_STATE(2599)] = 79282, - [SMALL_STATE(2600)] = 79305, - [SMALL_STATE(2601)] = 79328, - [SMALL_STATE(2602)] = 79351, - [SMALL_STATE(2603)] = 79374, - [SMALL_STATE(2604)] = 79397, - [SMALL_STATE(2605)] = 79416, - [SMALL_STATE(2606)] = 79437, - [SMALL_STATE(2607)] = 79454, - [SMALL_STATE(2608)] = 79477, - [SMALL_STATE(2609)] = 79500, - [SMALL_STATE(2610)] = 79523, - [SMALL_STATE(2611)] = 79546, - [SMALL_STATE(2612)] = 79569, - [SMALL_STATE(2613)] = 79592, - [SMALL_STATE(2614)] = 79615, - [SMALL_STATE(2615)] = 79638, - [SMALL_STATE(2616)] = 79661, - [SMALL_STATE(2617)] = 79684, - [SMALL_STATE(2618)] = 79707, - [SMALL_STATE(2619)] = 79730, - [SMALL_STATE(2620)] = 79751, - [SMALL_STATE(2621)] = 79774, - [SMALL_STATE(2622)] = 79797, - [SMALL_STATE(2623)] = 79820, - [SMALL_STATE(2624)] = 79839, - [SMALL_STATE(2625)] = 79862, - [SMALL_STATE(2626)] = 79885, - [SMALL_STATE(2627)] = 79908, - [SMALL_STATE(2628)] = 79931, - [SMALL_STATE(2629)] = 79954, - [SMALL_STATE(2630)] = 79977, - [SMALL_STATE(2631)] = 79996, - [SMALL_STATE(2632)] = 80019, - [SMALL_STATE(2633)] = 80042, - [SMALL_STATE(2634)] = 80065, - [SMALL_STATE(2635)] = 80084, - [SMALL_STATE(2636)] = 80101, - [SMALL_STATE(2637)] = 80122, - [SMALL_STATE(2638)] = 80143, - [SMALL_STATE(2639)] = 80166, - [SMALL_STATE(2640)] = 80189, - [SMALL_STATE(2641)] = 80212, - [SMALL_STATE(2642)] = 80235, - [SMALL_STATE(2643)] = 80258, - [SMALL_STATE(2644)] = 80281, - [SMALL_STATE(2645)] = 80304, - [SMALL_STATE(2646)] = 80327, - [SMALL_STATE(2647)] = 80350, - [SMALL_STATE(2648)] = 80367, - [SMALL_STATE(2649)] = 80386, - [SMALL_STATE(2650)] = 80409, - [SMALL_STATE(2651)] = 80432, - [SMALL_STATE(2652)] = 80455, - [SMALL_STATE(2653)] = 80478, - [SMALL_STATE(2654)] = 80497, - [SMALL_STATE(2655)] = 80520, - [SMALL_STATE(2656)] = 80539, - [SMALL_STATE(2657)] = 80562, - [SMALL_STATE(2658)] = 80585, - [SMALL_STATE(2659)] = 80608, - [SMALL_STATE(2660)] = 80629, - [SMALL_STATE(2661)] = 80652, - [SMALL_STATE(2662)] = 80675, - [SMALL_STATE(2663)] = 80696, - [SMALL_STATE(2664)] = 80719, - [SMALL_STATE(2665)] = 80742, - [SMALL_STATE(2666)] = 80765, - [SMALL_STATE(2667)] = 80788, - [SMALL_STATE(2668)] = 80811, - [SMALL_STATE(2669)] = 80834, - [SMALL_STATE(2670)] = 80851, - [SMALL_STATE(2671)] = 80874, - [SMALL_STATE(2672)] = 80897, - [SMALL_STATE(2673)] = 80920, - [SMALL_STATE(2674)] = 80943, - [SMALL_STATE(2675)] = 80966, - [SMALL_STATE(2676)] = 80989, - [SMALL_STATE(2677)] = 81010, - [SMALL_STATE(2678)] = 81033, - [SMALL_STATE(2679)] = 81056, - [SMALL_STATE(2680)] = 81079, - [SMALL_STATE(2681)] = 81102, - [SMALL_STATE(2682)] = 81125, - [SMALL_STATE(2683)] = 81148, - [SMALL_STATE(2684)] = 81167, - [SMALL_STATE(2685)] = 81190, - [SMALL_STATE(2686)] = 81209, - [SMALL_STATE(2687)] = 81232, - [SMALL_STATE(2688)] = 81255, - [SMALL_STATE(2689)] = 81278, - [SMALL_STATE(2690)] = 81299, - [SMALL_STATE(2691)] = 81322, - [SMALL_STATE(2692)] = 81345, - [SMALL_STATE(2693)] = 81368, - [SMALL_STATE(2694)] = 81391, - [SMALL_STATE(2695)] = 81414, - [SMALL_STATE(2696)] = 81437, - [SMALL_STATE(2697)] = 81460, - [SMALL_STATE(2698)] = 81483, - [SMALL_STATE(2699)] = 81506, - [SMALL_STATE(2700)] = 81529, - [SMALL_STATE(2701)] = 81548, - [SMALL_STATE(2702)] = 81571, - [SMALL_STATE(2703)] = 81594, - [SMALL_STATE(2704)] = 81617, - [SMALL_STATE(2705)] = 81640, - [SMALL_STATE(2706)] = 81659, - [SMALL_STATE(2707)] = 81682, - [SMALL_STATE(2708)] = 81705, - [SMALL_STATE(2709)] = 81728, - [SMALL_STATE(2710)] = 81749, - [SMALL_STATE(2711)] = 81772, - [SMALL_STATE(2712)] = 81795, - [SMALL_STATE(2713)] = 81818, - [SMALL_STATE(2714)] = 81841, - [SMALL_STATE(2715)] = 81864, - [SMALL_STATE(2716)] = 81887, - [SMALL_STATE(2717)] = 81908, - [SMALL_STATE(2718)] = 81931, - [SMALL_STATE(2719)] = 81954, - [SMALL_STATE(2720)] = 81977, - [SMALL_STATE(2721)] = 82000, - [SMALL_STATE(2722)] = 82023, - [SMALL_STATE(2723)] = 82046, - [SMALL_STATE(2724)] = 82069, - [SMALL_STATE(2725)] = 82092, - [SMALL_STATE(2726)] = 82111, - [SMALL_STATE(2727)] = 82134, - [SMALL_STATE(2728)] = 82153, - [SMALL_STATE(2729)] = 82172, - [SMALL_STATE(2730)] = 82193, - [SMALL_STATE(2731)] = 82216, - [SMALL_STATE(2732)] = 82239, - [SMALL_STATE(2733)] = 82262, - [SMALL_STATE(2734)] = 82283, - [SMALL_STATE(2735)] = 82306, - [SMALL_STATE(2736)] = 82329, - [SMALL_STATE(2737)] = 82352, - [SMALL_STATE(2738)] = 82375, - [SMALL_STATE(2739)] = 82398, - [SMALL_STATE(2740)] = 82421, - [SMALL_STATE(2741)] = 82444, - [SMALL_STATE(2742)] = 82463, - [SMALL_STATE(2743)] = 82484, - [SMALL_STATE(2744)] = 82505, - [SMALL_STATE(2745)] = 82528, - [SMALL_STATE(2746)] = 82551, - [SMALL_STATE(2747)] = 82574, - [SMALL_STATE(2748)] = 82597, - [SMALL_STATE(2749)] = 82620, - [SMALL_STATE(2750)] = 82643, - [SMALL_STATE(2751)] = 82662, - [SMALL_STATE(2752)] = 82685, - [SMALL_STATE(2753)] = 82708, - [SMALL_STATE(2754)] = 82727, - [SMALL_STATE(2755)] = 82746, - [SMALL_STATE(2756)] = 82769, - [SMALL_STATE(2757)] = 82792, - [SMALL_STATE(2758)] = 82815, - [SMALL_STATE(2759)] = 82838, - [SMALL_STATE(2760)] = 82861, - [SMALL_STATE(2761)] = 82882, - [SMALL_STATE(2762)] = 82905, - [SMALL_STATE(2763)] = 82928, - [SMALL_STATE(2764)] = 82949, - [SMALL_STATE(2765)] = 82972, - [SMALL_STATE(2766)] = 82995, - [SMALL_STATE(2767)] = 83018, - [SMALL_STATE(2768)] = 83037, - [SMALL_STATE(2769)] = 83056, - [SMALL_STATE(2770)] = 83079, - [SMALL_STATE(2771)] = 83098, - [SMALL_STATE(2772)] = 83117, - [SMALL_STATE(2773)] = 83136, - [SMALL_STATE(2774)] = 83157, - [SMALL_STATE(2775)] = 83176, - [SMALL_STATE(2776)] = 83197, - [SMALL_STATE(2777)] = 83220, - [SMALL_STATE(2778)] = 83243, - [SMALL_STATE(2779)] = 83266, - [SMALL_STATE(2780)] = 83289, - [SMALL_STATE(2781)] = 83312, - [SMALL_STATE(2782)] = 83335, - [SMALL_STATE(2783)] = 83358, - [SMALL_STATE(2784)] = 83379, - [SMALL_STATE(2785)] = 83402, - [SMALL_STATE(2786)] = 83425, - [SMALL_STATE(2787)] = 83448, - [SMALL_STATE(2788)] = 83471, - [SMALL_STATE(2789)] = 83494, - [SMALL_STATE(2790)] = 83515, - [SMALL_STATE(2791)] = 83536, - [SMALL_STATE(2792)] = 83559, - [SMALL_STATE(2793)] = 83582, - [SMALL_STATE(2794)] = 83605, - [SMALL_STATE(2795)] = 83626, - [SMALL_STATE(2796)] = 83645, - [SMALL_STATE(2797)] = 83668, - [SMALL_STATE(2798)] = 83691, - [SMALL_STATE(2799)] = 83714, - [SMALL_STATE(2800)] = 83737, - [SMALL_STATE(2801)] = 83760, - [SMALL_STATE(2802)] = 83783, - [SMALL_STATE(2803)] = 83806, - [SMALL_STATE(2804)] = 83829, - [SMALL_STATE(2805)] = 83852, - [SMALL_STATE(2806)] = 83875, - [SMALL_STATE(2807)] = 83898, - [SMALL_STATE(2808)] = 83921, - [SMALL_STATE(2809)] = 83944, - [SMALL_STATE(2810)] = 83967, - [SMALL_STATE(2811)] = 83990, - [SMALL_STATE(2812)] = 84013, - [SMALL_STATE(2813)] = 84036, - [SMALL_STATE(2814)] = 84059, - [SMALL_STATE(2815)] = 84082, - [SMALL_STATE(2816)] = 84099, - [SMALL_STATE(2817)] = 84120, - [SMALL_STATE(2818)] = 84139, - [SMALL_STATE(2819)] = 84162, - [SMALL_STATE(2820)] = 84185, - [SMALL_STATE(2821)] = 84208, - [SMALL_STATE(2822)] = 84227, - [SMALL_STATE(2823)] = 84248, - [SMALL_STATE(2824)] = 84269, - [SMALL_STATE(2825)] = 84290, - [SMALL_STATE(2826)] = 84313, - [SMALL_STATE(2827)] = 84336, - [SMALL_STATE(2828)] = 84359, - [SMALL_STATE(2829)] = 84378, - [SMALL_STATE(2830)] = 84401, - [SMALL_STATE(2831)] = 84424, - [SMALL_STATE(2832)] = 84447, - [SMALL_STATE(2833)] = 84470, - [SMALL_STATE(2834)] = 84489, - [SMALL_STATE(2835)] = 84512, - [SMALL_STATE(2836)] = 84535, - [SMALL_STATE(2837)] = 84558, - [SMALL_STATE(2838)] = 84581, - [SMALL_STATE(2839)] = 84604, - [SMALL_STATE(2840)] = 84627, - [SMALL_STATE(2841)] = 84650, - [SMALL_STATE(2842)] = 84669, - [SMALL_STATE(2843)] = 84688, - [SMALL_STATE(2844)] = 84711, - [SMALL_STATE(2845)] = 84734, - [SMALL_STATE(2846)] = 84757, - [SMALL_STATE(2847)] = 84780, - [SMALL_STATE(2848)] = 84803, - [SMALL_STATE(2849)] = 84821, - [SMALL_STATE(2850)] = 84841, - [SMALL_STATE(2851)] = 84861, - [SMALL_STATE(2852)] = 84879, - [SMALL_STATE(2853)] = 84899, - [SMALL_STATE(2854)] = 84919, - [SMALL_STATE(2855)] = 84937, - [SMALL_STATE(2856)] = 84957, - [SMALL_STATE(2857)] = 84977, - [SMALL_STATE(2858)] = 84997, - [SMALL_STATE(2859)] = 85017, - [SMALL_STATE(2860)] = 85033, - [SMALL_STATE(2861)] = 85049, - [SMALL_STATE(2862)] = 85069, - [SMALL_STATE(2863)] = 85089, - [SMALL_STATE(2864)] = 85109, - [SMALL_STATE(2865)] = 85129, - [SMALL_STATE(2866)] = 85149, - [SMALL_STATE(2867)] = 85169, - [SMALL_STATE(2868)] = 85189, - [SMALL_STATE(2869)] = 85207, - [SMALL_STATE(2870)] = 85223, - [SMALL_STATE(2871)] = 85243, - [SMALL_STATE(2872)] = 85263, - [SMALL_STATE(2873)] = 85283, - [SMALL_STATE(2874)] = 85303, - [SMALL_STATE(2875)] = 85323, - [SMALL_STATE(2876)] = 85339, - [SMALL_STATE(2877)] = 85359, - [SMALL_STATE(2878)] = 85375, - [SMALL_STATE(2879)] = 85393, - [SMALL_STATE(2880)] = 85409, - [SMALL_STATE(2881)] = 85429, - [SMALL_STATE(2882)] = 85445, - [SMALL_STATE(2883)] = 85465, - [SMALL_STATE(2884)] = 85485, - [SMALL_STATE(2885)] = 85505, - [SMALL_STATE(2886)] = 85521, - [SMALL_STATE(2887)] = 85541, - [SMALL_STATE(2888)] = 85561, - [SMALL_STATE(2889)] = 85579, - [SMALL_STATE(2890)] = 85595, - [SMALL_STATE(2891)] = 85615, - [SMALL_STATE(2892)] = 85635, - [SMALL_STATE(2893)] = 85655, - [SMALL_STATE(2894)] = 85673, - [SMALL_STATE(2895)] = 85691, - [SMALL_STATE(2896)] = 85711, - [SMALL_STATE(2897)] = 85731, - [SMALL_STATE(2898)] = 85749, - [SMALL_STATE(2899)] = 85767, - [SMALL_STATE(2900)] = 85787, - [SMALL_STATE(2901)] = 85807, - [SMALL_STATE(2902)] = 85827, - [SMALL_STATE(2903)] = 85847, - [SMALL_STATE(2904)] = 85867, - [SMALL_STATE(2905)] = 85887, - [SMALL_STATE(2906)] = 85907, - [SMALL_STATE(2907)] = 85925, - [SMALL_STATE(2908)] = 85945, - [SMALL_STATE(2909)] = 85963, - [SMALL_STATE(2910)] = 85983, - [SMALL_STATE(2911)] = 86003, - [SMALL_STATE(2912)] = 86023, - [SMALL_STATE(2913)] = 86043, - [SMALL_STATE(2914)] = 86063, - [SMALL_STATE(2915)] = 86083, - [SMALL_STATE(2916)] = 86103, - [SMALL_STATE(2917)] = 86121, - [SMALL_STATE(2918)] = 86139, - [SMALL_STATE(2919)] = 86159, - [SMALL_STATE(2920)] = 86179, - [SMALL_STATE(2921)] = 86199, - [SMALL_STATE(2922)] = 86219, - [SMALL_STATE(2923)] = 86235, - [SMALL_STATE(2924)] = 86255, - [SMALL_STATE(2925)] = 86275, - [SMALL_STATE(2926)] = 86295, - [SMALL_STATE(2927)] = 86313, - [SMALL_STATE(2928)] = 86333, - [SMALL_STATE(2929)] = 86353, - [SMALL_STATE(2930)] = 86373, - [SMALL_STATE(2931)] = 86393, - [SMALL_STATE(2932)] = 86413, - [SMALL_STATE(2933)] = 86433, - [SMALL_STATE(2934)] = 86453, - [SMALL_STATE(2935)] = 86473, - [SMALL_STATE(2936)] = 86493, - [SMALL_STATE(2937)] = 86509, - [SMALL_STATE(2938)] = 86529, - [SMALL_STATE(2939)] = 86549, - [SMALL_STATE(2940)] = 86569, - [SMALL_STATE(2941)] = 86585, - [SMALL_STATE(2942)] = 86605, - [SMALL_STATE(2943)] = 86625, - [SMALL_STATE(2944)] = 86641, - [SMALL_STATE(2945)] = 86657, - [SMALL_STATE(2946)] = 86677, - [SMALL_STATE(2947)] = 86697, - [SMALL_STATE(2948)] = 86715, - [SMALL_STATE(2949)] = 86733, - [SMALL_STATE(2950)] = 86751, - [SMALL_STATE(2951)] = 86769, - [SMALL_STATE(2952)] = 86789, - [SMALL_STATE(2953)] = 86805, - [SMALL_STATE(2954)] = 86825, - [SMALL_STATE(2955)] = 86845, - [SMALL_STATE(2956)] = 86861, - [SMALL_STATE(2957)] = 86881, - [SMALL_STATE(2958)] = 86901, - [SMALL_STATE(2959)] = 86921, - [SMALL_STATE(2960)] = 86941, - [SMALL_STATE(2961)] = 86959, - [SMALL_STATE(2962)] = 86979, - [SMALL_STATE(2963)] = 86999, - [SMALL_STATE(2964)] = 87019, - [SMALL_STATE(2965)] = 87039, - [SMALL_STATE(2966)] = 87059, - [SMALL_STATE(2967)] = 87079, - [SMALL_STATE(2968)] = 87099, - [SMALL_STATE(2969)] = 87119, - [SMALL_STATE(2970)] = 87137, - [SMALL_STATE(2971)] = 87157, - [SMALL_STATE(2972)] = 87173, - [SMALL_STATE(2973)] = 87189, - [SMALL_STATE(2974)] = 87205, - [SMALL_STATE(2975)] = 87221, - [SMALL_STATE(2976)] = 87241, - [SMALL_STATE(2977)] = 87257, - [SMALL_STATE(2978)] = 87273, - [SMALL_STATE(2979)] = 87293, - [SMALL_STATE(2980)] = 87313, - [SMALL_STATE(2981)] = 87333, - [SMALL_STATE(2982)] = 87353, - [SMALL_STATE(2983)] = 87373, - [SMALL_STATE(2984)] = 87393, - [SMALL_STATE(2985)] = 87409, - [SMALL_STATE(2986)] = 87429, - [SMALL_STATE(2987)] = 87449, - [SMALL_STATE(2988)] = 87465, - [SMALL_STATE(2989)] = 87483, - [SMALL_STATE(2990)] = 87503, - [SMALL_STATE(2991)] = 87523, - [SMALL_STATE(2992)] = 87541, - [SMALL_STATE(2993)] = 87557, - [SMALL_STATE(2994)] = 87577, - [SMALL_STATE(2995)] = 87597, - [SMALL_STATE(2996)] = 87617, - [SMALL_STATE(2997)] = 87635, - [SMALL_STATE(2998)] = 87655, - [SMALL_STATE(2999)] = 87675, - [SMALL_STATE(3000)] = 87691, - [SMALL_STATE(3001)] = 87707, - [SMALL_STATE(3002)] = 87727, - [SMALL_STATE(3003)] = 87747, - [SMALL_STATE(3004)] = 87767, - [SMALL_STATE(3005)] = 87787, - [SMALL_STATE(3006)] = 87807, - [SMALL_STATE(3007)] = 87827, - [SMALL_STATE(3008)] = 87847, - [SMALL_STATE(3009)] = 87865, - [SMALL_STATE(3010)] = 87885, - [SMALL_STATE(3011)] = 87905, - [SMALL_STATE(3012)] = 87925, - [SMALL_STATE(3013)] = 87945, - [SMALL_STATE(3014)] = 87965, - [SMALL_STATE(3015)] = 87985, - [SMALL_STATE(3016)] = 88005, - [SMALL_STATE(3017)] = 88025, - [SMALL_STATE(3018)] = 88041, - [SMALL_STATE(3019)] = 88061, - [SMALL_STATE(3020)] = 88081, - [SMALL_STATE(3021)] = 88101, - [SMALL_STATE(3022)] = 88121, - [SMALL_STATE(3023)] = 88141, - [SMALL_STATE(3024)] = 88159, - [SMALL_STATE(3025)] = 88179, - [SMALL_STATE(3026)] = 88195, - [SMALL_STATE(3027)] = 88211, - [SMALL_STATE(3028)] = 88231, - [SMALL_STATE(3029)] = 88251, - [SMALL_STATE(3030)] = 88271, - [SMALL_STATE(3031)] = 88291, - [SMALL_STATE(3032)] = 88311, - [SMALL_STATE(3033)] = 88327, - [SMALL_STATE(3034)] = 88347, - [SMALL_STATE(3035)] = 88367, - [SMALL_STATE(3036)] = 88387, - [SMALL_STATE(3037)] = 88407, - [SMALL_STATE(3038)] = 88427, - [SMALL_STATE(3039)] = 88445, - [SMALL_STATE(3040)] = 88465, - [SMALL_STATE(3041)] = 88481, - [SMALL_STATE(3042)] = 88501, - [SMALL_STATE(3043)] = 88519, - [SMALL_STATE(3044)] = 88539, - [SMALL_STATE(3045)] = 88559, - [SMALL_STATE(3046)] = 88577, - [SMALL_STATE(3047)] = 88597, - [SMALL_STATE(3048)] = 88615, - [SMALL_STATE(3049)] = 88635, - [SMALL_STATE(3050)] = 88655, - [SMALL_STATE(3051)] = 88675, - [SMALL_STATE(3052)] = 88693, - [SMALL_STATE(3053)] = 88713, - [SMALL_STATE(3054)] = 88729, - [SMALL_STATE(3055)] = 88747, - [SMALL_STATE(3056)] = 88767, - [SMALL_STATE(3057)] = 88783, - [SMALL_STATE(3058)] = 88803, - [SMALL_STATE(3059)] = 88819, - [SMALL_STATE(3060)] = 88839, - [SMALL_STATE(3061)] = 88855, - [SMALL_STATE(3062)] = 88875, - [SMALL_STATE(3063)] = 88895, - [SMALL_STATE(3064)] = 88911, - [SMALL_STATE(3065)] = 88929, - [SMALL_STATE(3066)] = 88947, - [SMALL_STATE(3067)] = 88963, - [SMALL_STATE(3068)] = 88983, - [SMALL_STATE(3069)] = 89003, - [SMALL_STATE(3070)] = 89023, - [SMALL_STATE(3071)] = 89043, - [SMALL_STATE(3072)] = 89063, - [SMALL_STATE(3073)] = 89083, - [SMALL_STATE(3074)] = 89103, - [SMALL_STATE(3075)] = 89123, - [SMALL_STATE(3076)] = 89141, - [SMALL_STATE(3077)] = 89161, - [SMALL_STATE(3078)] = 89181, - [SMALL_STATE(3079)] = 89199, - [SMALL_STATE(3080)] = 89215, - [SMALL_STATE(3081)] = 89235, - [SMALL_STATE(3082)] = 89251, - [SMALL_STATE(3083)] = 89271, - [SMALL_STATE(3084)] = 89291, - [SMALL_STATE(3085)] = 89311, - [SMALL_STATE(3086)] = 89331, - [SMALL_STATE(3087)] = 89347, - [SMALL_STATE(3088)] = 89365, - [SMALL_STATE(3089)] = 89385, - [SMALL_STATE(3090)] = 89405, - [SMALL_STATE(3091)] = 89421, - [SMALL_STATE(3092)] = 89441, - [SMALL_STATE(3093)] = 89461, - [SMALL_STATE(3094)] = 89481, - [SMALL_STATE(3095)] = 89501, - [SMALL_STATE(3096)] = 89517, - [SMALL_STATE(3097)] = 89537, - [SMALL_STATE(3098)] = 89557, - [SMALL_STATE(3099)] = 89577, - [SMALL_STATE(3100)] = 89597, - [SMALL_STATE(3101)] = 89617, - [SMALL_STATE(3102)] = 89637, - [SMALL_STATE(3103)] = 89653, - [SMALL_STATE(3104)] = 89673, - [SMALL_STATE(3105)] = 89693, - [SMALL_STATE(3106)] = 89713, - [SMALL_STATE(3107)] = 89729, - [SMALL_STATE(3108)] = 89745, - [SMALL_STATE(3109)] = 89765, - [SMALL_STATE(3110)] = 89785, - [SMALL_STATE(3111)] = 89801, - [SMALL_STATE(3112)] = 89819, - [SMALL_STATE(3113)] = 89839, - [SMALL_STATE(3114)] = 89859, - [SMALL_STATE(3115)] = 89879, - [SMALL_STATE(3116)] = 89897, - [SMALL_STATE(3117)] = 89913, - [SMALL_STATE(3118)] = 89933, - [SMALL_STATE(3119)] = 89953, - [SMALL_STATE(3120)] = 89973, - [SMALL_STATE(3121)] = 89993, - [SMALL_STATE(3122)] = 90009, - [SMALL_STATE(3123)] = 90025, - [SMALL_STATE(3124)] = 90043, - [SMALL_STATE(3125)] = 90063, - [SMALL_STATE(3126)] = 90083, - [SMALL_STATE(3127)] = 90103, - [SMALL_STATE(3128)] = 90119, - [SMALL_STATE(3129)] = 90139, - [SMALL_STATE(3130)] = 90155, - [SMALL_STATE(3131)] = 90175, - [SMALL_STATE(3132)] = 90191, - [SMALL_STATE(3133)] = 90207, - [SMALL_STATE(3134)] = 90227, - [SMALL_STATE(3135)] = 90247, - [SMALL_STATE(3136)] = 90267, - [SMALL_STATE(3137)] = 90287, - [SMALL_STATE(3138)] = 90307, - [SMALL_STATE(3139)] = 90327, - [SMALL_STATE(3140)] = 90347, - [SMALL_STATE(3141)] = 90367, - [SMALL_STATE(3142)] = 90385, - [SMALL_STATE(3143)] = 90401, - [SMALL_STATE(3144)] = 90421, - [SMALL_STATE(3145)] = 90441, - [SMALL_STATE(3146)] = 90461, - [SMALL_STATE(3147)] = 90481, - [SMALL_STATE(3148)] = 90501, - [SMALL_STATE(3149)] = 90521, - [SMALL_STATE(3150)] = 90541, - [SMALL_STATE(3151)] = 90561, - [SMALL_STATE(3152)] = 90581, - [SMALL_STATE(3153)] = 90597, - [SMALL_STATE(3154)] = 90617, - [SMALL_STATE(3155)] = 90637, - [SMALL_STATE(3156)] = 90657, - [SMALL_STATE(3157)] = 90677, - [SMALL_STATE(3158)] = 90697, - [SMALL_STATE(3159)] = 90714, - [SMALL_STATE(3160)] = 90731, - [SMALL_STATE(3161)] = 90748, - [SMALL_STATE(3162)] = 90765, - [SMALL_STATE(3163)] = 90782, - [SMALL_STATE(3164)] = 90799, - [SMALL_STATE(3165)] = 90814, - [SMALL_STATE(3166)] = 90831, - [SMALL_STATE(3167)] = 90848, - [SMALL_STATE(3168)] = 90863, - [SMALL_STATE(3169)] = 90880, - [SMALL_STATE(3170)] = 90897, - [SMALL_STATE(3171)] = 90912, - [SMALL_STATE(3172)] = 90929, - [SMALL_STATE(3173)] = 90946, - [SMALL_STATE(3174)] = 90963, - [SMALL_STATE(3175)] = 90980, - [SMALL_STATE(3176)] = 90997, - [SMALL_STATE(3177)] = 91014, - [SMALL_STATE(3178)] = 91031, - [SMALL_STATE(3179)] = 91046, - [SMALL_STATE(3180)] = 91063, - [SMALL_STATE(3181)] = 91080, - [SMALL_STATE(3182)] = 91097, - [SMALL_STATE(3183)] = 91114, - [SMALL_STATE(3184)] = 91131, - [SMALL_STATE(3185)] = 91148, - [SMALL_STATE(3186)] = 91163, - [SMALL_STATE(3187)] = 91178, - [SMALL_STATE(3188)] = 91195, - [SMALL_STATE(3189)] = 91212, - [SMALL_STATE(3190)] = 91227, - [SMALL_STATE(3191)] = 91244, - [SMALL_STATE(3192)] = 91261, - [SMALL_STATE(3193)] = 91278, - [SMALL_STATE(3194)] = 91295, - [SMALL_STATE(3195)] = 91312, - [SMALL_STATE(3196)] = 91329, - [SMALL_STATE(3197)] = 91344, - [SMALL_STATE(3198)] = 91361, - [SMALL_STATE(3199)] = 91376, - [SMALL_STATE(3200)] = 91391, - [SMALL_STATE(3201)] = 91408, - [SMALL_STATE(3202)] = 91425, - [SMALL_STATE(3203)] = 91442, - [SMALL_STATE(3204)] = 91459, - [SMALL_STATE(3205)] = 91476, - [SMALL_STATE(3206)] = 91493, - [SMALL_STATE(3207)] = 91510, - [SMALL_STATE(3208)] = 91527, - [SMALL_STATE(3209)] = 91544, - [SMALL_STATE(3210)] = 91559, - [SMALL_STATE(3211)] = 91574, - [SMALL_STATE(3212)] = 91591, - [SMALL_STATE(3213)] = 91606, - [SMALL_STATE(3214)] = 91623, - [SMALL_STATE(3215)] = 91640, - [SMALL_STATE(3216)] = 91657, - [SMALL_STATE(3217)] = 91674, - [SMALL_STATE(3218)] = 91691, - [SMALL_STATE(3219)] = 91706, - [SMALL_STATE(3220)] = 91723, - [SMALL_STATE(3221)] = 91740, - [SMALL_STATE(3222)] = 91757, - [SMALL_STATE(3223)] = 91772, - [SMALL_STATE(3224)] = 91789, - [SMALL_STATE(3225)] = 91804, - [SMALL_STATE(3226)] = 91821, - [SMALL_STATE(3227)] = 91836, - [SMALL_STATE(3228)] = 91853, - [SMALL_STATE(3229)] = 91870, - [SMALL_STATE(3230)] = 91887, - [SMALL_STATE(3231)] = 91902, - [SMALL_STATE(3232)] = 91919, - [SMALL_STATE(3233)] = 91936, - [SMALL_STATE(3234)] = 91953, - [SMALL_STATE(3235)] = 91970, - [SMALL_STATE(3236)] = 91987, - [SMALL_STATE(3237)] = 92002, - [SMALL_STATE(3238)] = 92019, - [SMALL_STATE(3239)] = 92036, - [SMALL_STATE(3240)] = 92053, - [SMALL_STATE(3241)] = 92070, - [SMALL_STATE(3242)] = 92087, - [SMALL_STATE(3243)] = 92104, - [SMALL_STATE(3244)] = 92121, - [SMALL_STATE(3245)] = 92138, - [SMALL_STATE(3246)] = 92155, - [SMALL_STATE(3247)] = 92172, - [SMALL_STATE(3248)] = 92189, - [SMALL_STATE(3249)] = 92206, - [SMALL_STATE(3250)] = 92223, - [SMALL_STATE(3251)] = 92240, - [SMALL_STATE(3252)] = 92257, - [SMALL_STATE(3253)] = 92274, - [SMALL_STATE(3254)] = 92291, - [SMALL_STATE(3255)] = 92308, - [SMALL_STATE(3256)] = 92325, - [SMALL_STATE(3257)] = 92340, - [SMALL_STATE(3258)] = 92355, - [SMALL_STATE(3259)] = 92370, - [SMALL_STATE(3260)] = 92387, - [SMALL_STATE(3261)] = 92404, - [SMALL_STATE(3262)] = 92419, - [SMALL_STATE(3263)] = 92434, - [SMALL_STATE(3264)] = 92451, - [SMALL_STATE(3265)] = 92468, - [SMALL_STATE(3266)] = 92485, - [SMALL_STATE(3267)] = 92502, - [SMALL_STATE(3268)] = 92519, - [SMALL_STATE(3269)] = 92534, - [SMALL_STATE(3270)] = 92551, - [SMALL_STATE(3271)] = 92568, - [SMALL_STATE(3272)] = 92583, - [SMALL_STATE(3273)] = 92600, - [SMALL_STATE(3274)] = 92617, - [SMALL_STATE(3275)] = 92634, - [SMALL_STATE(3276)] = 92649, - [SMALL_STATE(3277)] = 92666, - [SMALL_STATE(3278)] = 92683, - [SMALL_STATE(3279)] = 92700, - [SMALL_STATE(3280)] = 92717, - [SMALL_STATE(3281)] = 92734, - [SMALL_STATE(3282)] = 92751, - [SMALL_STATE(3283)] = 92766, - [SMALL_STATE(3284)] = 92783, - [SMALL_STATE(3285)] = 92800, - [SMALL_STATE(3286)] = 92817, - [SMALL_STATE(3287)] = 92834, - [SMALL_STATE(3288)] = 92851, - [SMALL_STATE(3289)] = 92868, - [SMALL_STATE(3290)] = 92885, - [SMALL_STATE(3291)] = 92902, - [SMALL_STATE(3292)] = 92919, - [SMALL_STATE(3293)] = 92936, - [SMALL_STATE(3294)] = 92953, - [SMALL_STATE(3295)] = 92970, - [SMALL_STATE(3296)] = 92987, - [SMALL_STATE(3297)] = 93004, - [SMALL_STATE(3298)] = 93021, - [SMALL_STATE(3299)] = 93038, - [SMALL_STATE(3300)] = 93055, - [SMALL_STATE(3301)] = 93072, - [SMALL_STATE(3302)] = 93089, - [SMALL_STATE(3303)] = 93106, - [SMALL_STATE(3304)] = 93121, - [SMALL_STATE(3305)] = 93138, - [SMALL_STATE(3306)] = 93155, - [SMALL_STATE(3307)] = 93172, - [SMALL_STATE(3308)] = 93187, - [SMALL_STATE(3309)] = 93202, - [SMALL_STATE(3310)] = 93219, - [SMALL_STATE(3311)] = 93236, - [SMALL_STATE(3312)] = 93253, - [SMALL_STATE(3313)] = 93270, - [SMALL_STATE(3314)] = 93287, - [SMALL_STATE(3315)] = 93304, - [SMALL_STATE(3316)] = 93321, - [SMALL_STATE(3317)] = 93336, - [SMALL_STATE(3318)] = 93353, - [SMALL_STATE(3319)] = 93370, - [SMALL_STATE(3320)] = 93387, - [SMALL_STATE(3321)] = 93404, - [SMALL_STATE(3322)] = 93421, - [SMALL_STATE(3323)] = 93438, - [SMALL_STATE(3324)] = 93453, - [SMALL_STATE(3325)] = 93470, - [SMALL_STATE(3326)] = 93487, - [SMALL_STATE(3327)] = 93502, - [SMALL_STATE(3328)] = 93519, - [SMALL_STATE(3329)] = 93536, - [SMALL_STATE(3330)] = 93553, - [SMALL_STATE(3331)] = 93570, - [SMALL_STATE(3332)] = 93587, - [SMALL_STATE(3333)] = 93604, - [SMALL_STATE(3334)] = 93619, - [SMALL_STATE(3335)] = 93636, - [SMALL_STATE(3336)] = 93653, - [SMALL_STATE(3337)] = 93670, - [SMALL_STATE(3338)] = 93687, - [SMALL_STATE(3339)] = 93704, - [SMALL_STATE(3340)] = 93721, - [SMALL_STATE(3341)] = 93738, - [SMALL_STATE(3342)] = 93755, - [SMALL_STATE(3343)] = 93772, - [SMALL_STATE(3344)] = 93789, - [SMALL_STATE(3345)] = 93806, - [SMALL_STATE(3346)] = 93823, - [SMALL_STATE(3347)] = 93840, - [SMALL_STATE(3348)] = 93857, - [SMALL_STATE(3349)] = 93874, - [SMALL_STATE(3350)] = 93891, - [SMALL_STATE(3351)] = 93908, - [SMALL_STATE(3352)] = 93925, - [SMALL_STATE(3353)] = 93942, - [SMALL_STATE(3354)] = 93959, - [SMALL_STATE(3355)] = 93976, - [SMALL_STATE(3356)] = 93993, - [SMALL_STATE(3357)] = 94010, - [SMALL_STATE(3358)] = 94027, - [SMALL_STATE(3359)] = 94044, - [SMALL_STATE(3360)] = 94061, - [SMALL_STATE(3361)] = 94078, - [SMALL_STATE(3362)] = 94095, - [SMALL_STATE(3363)] = 94112, - [SMALL_STATE(3364)] = 94129, - [SMALL_STATE(3365)] = 94146, - [SMALL_STATE(3366)] = 94163, - [SMALL_STATE(3367)] = 94180, - [SMALL_STATE(3368)] = 94197, - [SMALL_STATE(3369)] = 94214, - [SMALL_STATE(3370)] = 94231, - [SMALL_STATE(3371)] = 94248, - [SMALL_STATE(3372)] = 94265, - [SMALL_STATE(3373)] = 94280, - [SMALL_STATE(3374)] = 94295, - [SMALL_STATE(3375)] = 94312, - [SMALL_STATE(3376)] = 94327, - [SMALL_STATE(3377)] = 94342, - [SMALL_STATE(3378)] = 94359, - [SMALL_STATE(3379)] = 94374, - [SMALL_STATE(3380)] = 94391, - [SMALL_STATE(3381)] = 94408, - [SMALL_STATE(3382)] = 94423, - [SMALL_STATE(3383)] = 94440, - [SMALL_STATE(3384)] = 94455, - [SMALL_STATE(3385)] = 94472, - [SMALL_STATE(3386)] = 94489, - [SMALL_STATE(3387)] = 94506, - [SMALL_STATE(3388)] = 94523, - [SMALL_STATE(3389)] = 94540, - [SMALL_STATE(3390)] = 94557, - [SMALL_STATE(3391)] = 94574, - [SMALL_STATE(3392)] = 94589, - [SMALL_STATE(3393)] = 94604, - [SMALL_STATE(3394)] = 94621, - [SMALL_STATE(3395)] = 94638, - [SMALL_STATE(3396)] = 94655, - [SMALL_STATE(3397)] = 94672, - [SMALL_STATE(3398)] = 94689, - [SMALL_STATE(3399)] = 94706, - [SMALL_STATE(3400)] = 94721, - [SMALL_STATE(3401)] = 94738, - [SMALL_STATE(3402)] = 94755, - [SMALL_STATE(3403)] = 94772, - [SMALL_STATE(3404)] = 94787, - [SMALL_STATE(3405)] = 94804, - [SMALL_STATE(3406)] = 94821, - [SMALL_STATE(3407)] = 94838, - [SMALL_STATE(3408)] = 94855, - [SMALL_STATE(3409)] = 94872, - [SMALL_STATE(3410)] = 94889, - [SMALL_STATE(3411)] = 94906, - [SMALL_STATE(3412)] = 94923, - [SMALL_STATE(3413)] = 94940, - [SMALL_STATE(3414)] = 94955, - [SMALL_STATE(3415)] = 94970, - [SMALL_STATE(3416)] = 94985, - [SMALL_STATE(3417)] = 95002, - [SMALL_STATE(3418)] = 95019, - [SMALL_STATE(3419)] = 95036, - [SMALL_STATE(3420)] = 95051, - [SMALL_STATE(3421)] = 95068, - [SMALL_STATE(3422)] = 95085, - [SMALL_STATE(3423)] = 95102, - [SMALL_STATE(3424)] = 95119, - [SMALL_STATE(3425)] = 95134, - [SMALL_STATE(3426)] = 95151, - [SMALL_STATE(3427)] = 95168, - [SMALL_STATE(3428)] = 95183, - [SMALL_STATE(3429)] = 95200, - [SMALL_STATE(3430)] = 95217, - [SMALL_STATE(3431)] = 95234, - [SMALL_STATE(3432)] = 95251, - [SMALL_STATE(3433)] = 95268, - [SMALL_STATE(3434)] = 95283, - [SMALL_STATE(3435)] = 95300, - [SMALL_STATE(3436)] = 95317, - [SMALL_STATE(3437)] = 95334, - [SMALL_STATE(3438)] = 95351, - [SMALL_STATE(3439)] = 95368, - [SMALL_STATE(3440)] = 95385, - [SMALL_STATE(3441)] = 95402, - [SMALL_STATE(3442)] = 95419, - [SMALL_STATE(3443)] = 95436, - [SMALL_STATE(3444)] = 95453, - [SMALL_STATE(3445)] = 95470, - [SMALL_STATE(3446)] = 95487, - [SMALL_STATE(3447)] = 95504, - [SMALL_STATE(3448)] = 95521, - [SMALL_STATE(3449)] = 95536, - [SMALL_STATE(3450)] = 95553, - [SMALL_STATE(3451)] = 95570, - [SMALL_STATE(3452)] = 95587, - [SMALL_STATE(3453)] = 95604, - [SMALL_STATE(3454)] = 95619, - [SMALL_STATE(3455)] = 95636, - [SMALL_STATE(3456)] = 95653, - [SMALL_STATE(3457)] = 95670, - [SMALL_STATE(3458)] = 95685, - [SMALL_STATE(3459)] = 95700, - [SMALL_STATE(3460)] = 95715, - [SMALL_STATE(3461)] = 95732, - [SMALL_STATE(3462)] = 95746, - [SMALL_STATE(3463)] = 95760, - [SMALL_STATE(3464)] = 95774, - [SMALL_STATE(3465)] = 95788, - [SMALL_STATE(3466)] = 95802, - [SMALL_STATE(3467)] = 95816, - [SMALL_STATE(3468)] = 95830, - [SMALL_STATE(3469)] = 95844, - [SMALL_STATE(3470)] = 95858, - [SMALL_STATE(3471)] = 95872, - [SMALL_STATE(3472)] = 95886, - [SMALL_STATE(3473)] = 95900, - [SMALL_STATE(3474)] = 95914, - [SMALL_STATE(3475)] = 95928, - [SMALL_STATE(3476)] = 95942, - [SMALL_STATE(3477)] = 95956, - [SMALL_STATE(3478)] = 95970, - [SMALL_STATE(3479)] = 95984, - [SMALL_STATE(3480)] = 95998, - [SMALL_STATE(3481)] = 96012, - [SMALL_STATE(3482)] = 96026, - [SMALL_STATE(3483)] = 96040, - [SMALL_STATE(3484)] = 96054, - [SMALL_STATE(3485)] = 96068, - [SMALL_STATE(3486)] = 96082, - [SMALL_STATE(3487)] = 96096, - [SMALL_STATE(3488)] = 96110, - [SMALL_STATE(3489)] = 96124, - [SMALL_STATE(3490)] = 96138, - [SMALL_STATE(3491)] = 96152, - [SMALL_STATE(3492)] = 96166, - [SMALL_STATE(3493)] = 96180, - [SMALL_STATE(3494)] = 96194, - [SMALL_STATE(3495)] = 96208, - [SMALL_STATE(3496)] = 96222, - [SMALL_STATE(3497)] = 96236, - [SMALL_STATE(3498)] = 96250, - [SMALL_STATE(3499)] = 96264, - [SMALL_STATE(3500)] = 96278, - [SMALL_STATE(3501)] = 96292, - [SMALL_STATE(3502)] = 96306, - [SMALL_STATE(3503)] = 96320, - [SMALL_STATE(3504)] = 96334, - [SMALL_STATE(3505)] = 96348, - [SMALL_STATE(3506)] = 96362, - [SMALL_STATE(3507)] = 96376, - [SMALL_STATE(3508)] = 96390, - [SMALL_STATE(3509)] = 96404, - [SMALL_STATE(3510)] = 96418, - [SMALL_STATE(3511)] = 96432, - [SMALL_STATE(3512)] = 96446, - [SMALL_STATE(3513)] = 96460, - [SMALL_STATE(3514)] = 96474, - [SMALL_STATE(3515)] = 96488, - [SMALL_STATE(3516)] = 96502, - [SMALL_STATE(3517)] = 96516, - [SMALL_STATE(3518)] = 96530, - [SMALL_STATE(3519)] = 96544, - [SMALL_STATE(3520)] = 96558, - [SMALL_STATE(3521)] = 96572, - [SMALL_STATE(3522)] = 96586, - [SMALL_STATE(3523)] = 96600, - [SMALL_STATE(3524)] = 96614, - [SMALL_STATE(3525)] = 96628, - [SMALL_STATE(3526)] = 96642, - [SMALL_STATE(3527)] = 96656, - [SMALL_STATE(3528)] = 96670, - [SMALL_STATE(3529)] = 96684, - [SMALL_STATE(3530)] = 96698, - [SMALL_STATE(3531)] = 96712, - [SMALL_STATE(3532)] = 96726, - [SMALL_STATE(3533)] = 96740, - [SMALL_STATE(3534)] = 96754, - [SMALL_STATE(3535)] = 96768, - [SMALL_STATE(3536)] = 96782, - [SMALL_STATE(3537)] = 96796, - [SMALL_STATE(3538)] = 96810, - [SMALL_STATE(3539)] = 96824, - [SMALL_STATE(3540)] = 96838, - [SMALL_STATE(3541)] = 96852, - [SMALL_STATE(3542)] = 96866, - [SMALL_STATE(3543)] = 96880, - [SMALL_STATE(3544)] = 96894, - [SMALL_STATE(3545)] = 96908, - [SMALL_STATE(3546)] = 96922, - [SMALL_STATE(3547)] = 96936, - [SMALL_STATE(3548)] = 96950, - [SMALL_STATE(3549)] = 96964, - [SMALL_STATE(3550)] = 96978, - [SMALL_STATE(3551)] = 96992, - [SMALL_STATE(3552)] = 97006, - [SMALL_STATE(3553)] = 97020, - [SMALL_STATE(3554)] = 97034, - [SMALL_STATE(3555)] = 97048, - [SMALL_STATE(3556)] = 97062, - [SMALL_STATE(3557)] = 97076, - [SMALL_STATE(3558)] = 97090, - [SMALL_STATE(3559)] = 97104, - [SMALL_STATE(3560)] = 97118, - [SMALL_STATE(3561)] = 97132, - [SMALL_STATE(3562)] = 97146, - [SMALL_STATE(3563)] = 97160, - [SMALL_STATE(3564)] = 97174, - [SMALL_STATE(3565)] = 97188, - [SMALL_STATE(3566)] = 97202, - [SMALL_STATE(3567)] = 97216, - [SMALL_STATE(3568)] = 97230, - [SMALL_STATE(3569)] = 97244, - [SMALL_STATE(3570)] = 97258, - [SMALL_STATE(3571)] = 97272, - [SMALL_STATE(3572)] = 97286, - [SMALL_STATE(3573)] = 97300, - [SMALL_STATE(3574)] = 97314, - [SMALL_STATE(3575)] = 97328, - [SMALL_STATE(3576)] = 97342, - [SMALL_STATE(3577)] = 97356, - [SMALL_STATE(3578)] = 97370, - [SMALL_STATE(3579)] = 97384, - [SMALL_STATE(3580)] = 97398, - [SMALL_STATE(3581)] = 97412, - [SMALL_STATE(3582)] = 97426, - [SMALL_STATE(3583)] = 97440, - [SMALL_STATE(3584)] = 97454, - [SMALL_STATE(3585)] = 97468, - [SMALL_STATE(3586)] = 97482, - [SMALL_STATE(3587)] = 97496, - [SMALL_STATE(3588)] = 97510, - [SMALL_STATE(3589)] = 97524, - [SMALL_STATE(3590)] = 97538, - [SMALL_STATE(3591)] = 97552, - [SMALL_STATE(3592)] = 97566, - [SMALL_STATE(3593)] = 97580, - [SMALL_STATE(3594)] = 97594, - [SMALL_STATE(3595)] = 97608, - [SMALL_STATE(3596)] = 97622, - [SMALL_STATE(3597)] = 97636, - [SMALL_STATE(3598)] = 97650, - [SMALL_STATE(3599)] = 97664, - [SMALL_STATE(3600)] = 97678, - [SMALL_STATE(3601)] = 97692, - [SMALL_STATE(3602)] = 97706, - [SMALL_STATE(3603)] = 97720, - [SMALL_STATE(3604)] = 97734, - [SMALL_STATE(3605)] = 97748, - [SMALL_STATE(3606)] = 97762, - [SMALL_STATE(3607)] = 97776, - [SMALL_STATE(3608)] = 97790, - [SMALL_STATE(3609)] = 97804, - [SMALL_STATE(3610)] = 97818, - [SMALL_STATE(3611)] = 97832, - [SMALL_STATE(3612)] = 97846, - [SMALL_STATE(3613)] = 97860, - [SMALL_STATE(3614)] = 97874, - [SMALL_STATE(3615)] = 97888, - [SMALL_STATE(3616)] = 97902, - [SMALL_STATE(3617)] = 97916, - [SMALL_STATE(3618)] = 97930, - [SMALL_STATE(3619)] = 97944, - [SMALL_STATE(3620)] = 97958, - [SMALL_STATE(3621)] = 97972, - [SMALL_STATE(3622)] = 97986, - [SMALL_STATE(3623)] = 98000, - [SMALL_STATE(3624)] = 98014, - [SMALL_STATE(3625)] = 98028, - [SMALL_STATE(3626)] = 98042, - [SMALL_STATE(3627)] = 98056, - [SMALL_STATE(3628)] = 98070, - [SMALL_STATE(3629)] = 98084, - [SMALL_STATE(3630)] = 98098, - [SMALL_STATE(3631)] = 98112, - [SMALL_STATE(3632)] = 98126, - [SMALL_STATE(3633)] = 98140, - [SMALL_STATE(3634)] = 98154, - [SMALL_STATE(3635)] = 98168, - [SMALL_STATE(3636)] = 98182, - [SMALL_STATE(3637)] = 98196, - [SMALL_STATE(3638)] = 98210, - [SMALL_STATE(3639)] = 98224, - [SMALL_STATE(3640)] = 98238, - [SMALL_STATE(3641)] = 98252, - [SMALL_STATE(3642)] = 98266, - [SMALL_STATE(3643)] = 98280, - [SMALL_STATE(3644)] = 98294, - [SMALL_STATE(3645)] = 98308, - [SMALL_STATE(3646)] = 98322, - [SMALL_STATE(3647)] = 98336, - [SMALL_STATE(3648)] = 98350, - [SMALL_STATE(3649)] = 98364, - [SMALL_STATE(3650)] = 98378, - [SMALL_STATE(3651)] = 98392, - [SMALL_STATE(3652)] = 98406, - [SMALL_STATE(3653)] = 98420, - [SMALL_STATE(3654)] = 98434, - [SMALL_STATE(3655)] = 98448, - [SMALL_STATE(3656)] = 98462, - [SMALL_STATE(3657)] = 98476, - [SMALL_STATE(3658)] = 98490, - [SMALL_STATE(3659)] = 98504, - [SMALL_STATE(3660)] = 98518, - [SMALL_STATE(3661)] = 98532, - [SMALL_STATE(3662)] = 98546, - [SMALL_STATE(3663)] = 98560, - [SMALL_STATE(3664)] = 98574, - [SMALL_STATE(3665)] = 98588, - [SMALL_STATE(3666)] = 98602, - [SMALL_STATE(3667)] = 98616, - [SMALL_STATE(3668)] = 98630, - [SMALL_STATE(3669)] = 98644, - [SMALL_STATE(3670)] = 98658, - [SMALL_STATE(3671)] = 98672, - [SMALL_STATE(3672)] = 98686, - [SMALL_STATE(3673)] = 98700, - [SMALL_STATE(3674)] = 98714, - [SMALL_STATE(3675)] = 98728, - [SMALL_STATE(3676)] = 98742, - [SMALL_STATE(3677)] = 98756, - [SMALL_STATE(3678)] = 98770, - [SMALL_STATE(3679)] = 98784, - [SMALL_STATE(3680)] = 98798, - [SMALL_STATE(3681)] = 98812, - [SMALL_STATE(3682)] = 98826, - [SMALL_STATE(3683)] = 98840, - [SMALL_STATE(3684)] = 98854, - [SMALL_STATE(3685)] = 98868, - [SMALL_STATE(3686)] = 98882, - [SMALL_STATE(3687)] = 98896, - [SMALL_STATE(3688)] = 98910, - [SMALL_STATE(3689)] = 98924, - [SMALL_STATE(3690)] = 98938, - [SMALL_STATE(3691)] = 98952, - [SMALL_STATE(3692)] = 98966, - [SMALL_STATE(3693)] = 98980, - [SMALL_STATE(3694)] = 98994, - [SMALL_STATE(3695)] = 99008, - [SMALL_STATE(3696)] = 99022, - [SMALL_STATE(3697)] = 99036, - [SMALL_STATE(3698)] = 99050, - [SMALL_STATE(3699)] = 99064, - [SMALL_STATE(3700)] = 99078, - [SMALL_STATE(3701)] = 99092, - [SMALL_STATE(3702)] = 99106, - [SMALL_STATE(3703)] = 99120, - [SMALL_STATE(3704)] = 99134, - [SMALL_STATE(3705)] = 99148, - [SMALL_STATE(3706)] = 99162, - [SMALL_STATE(3707)] = 99176, - [SMALL_STATE(3708)] = 99190, - [SMALL_STATE(3709)] = 99204, - [SMALL_STATE(3710)] = 99218, - [SMALL_STATE(3711)] = 99232, - [SMALL_STATE(3712)] = 99246, - [SMALL_STATE(3713)] = 99260, - [SMALL_STATE(3714)] = 99274, - [SMALL_STATE(3715)] = 99288, - [SMALL_STATE(3716)] = 99302, - [SMALL_STATE(3717)] = 99316, - [SMALL_STATE(3718)] = 99330, - [SMALL_STATE(3719)] = 99344, - [SMALL_STATE(3720)] = 99358, - [SMALL_STATE(3721)] = 99372, - [SMALL_STATE(3722)] = 99386, - [SMALL_STATE(3723)] = 99400, - [SMALL_STATE(3724)] = 99414, - [SMALL_STATE(3725)] = 99428, - [SMALL_STATE(3726)] = 99442, - [SMALL_STATE(3727)] = 99456, - [SMALL_STATE(3728)] = 99470, - [SMALL_STATE(3729)] = 99484, - [SMALL_STATE(3730)] = 99498, - [SMALL_STATE(3731)] = 99512, - [SMALL_STATE(3732)] = 99526, - [SMALL_STATE(3733)] = 99540, - [SMALL_STATE(3734)] = 99554, - [SMALL_STATE(3735)] = 99568, - [SMALL_STATE(3736)] = 99582, - [SMALL_STATE(3737)] = 99596, - [SMALL_STATE(3738)] = 99610, - [SMALL_STATE(3739)] = 99624, - [SMALL_STATE(3740)] = 99638, - [SMALL_STATE(3741)] = 99652, - [SMALL_STATE(3742)] = 99666, - [SMALL_STATE(3743)] = 99680, - [SMALL_STATE(3744)] = 99694, - [SMALL_STATE(3745)] = 99708, - [SMALL_STATE(3746)] = 99722, - [SMALL_STATE(3747)] = 99736, - [SMALL_STATE(3748)] = 99750, - [SMALL_STATE(3749)] = 99764, - [SMALL_STATE(3750)] = 99778, - [SMALL_STATE(3751)] = 99792, - [SMALL_STATE(3752)] = 99806, - [SMALL_STATE(3753)] = 99820, - [SMALL_STATE(3754)] = 99834, - [SMALL_STATE(3755)] = 99848, - [SMALL_STATE(3756)] = 99862, - [SMALL_STATE(3757)] = 99876, - [SMALL_STATE(3758)] = 99890, - [SMALL_STATE(3759)] = 99904, - [SMALL_STATE(3760)] = 99918, - [SMALL_STATE(3761)] = 99932, - [SMALL_STATE(3762)] = 99946, - [SMALL_STATE(3763)] = 99960, - [SMALL_STATE(3764)] = 99974, - [SMALL_STATE(3765)] = 99988, - [SMALL_STATE(3766)] = 100002, - [SMALL_STATE(3767)] = 100016, - [SMALL_STATE(3768)] = 100030, - [SMALL_STATE(3769)] = 100044, - [SMALL_STATE(3770)] = 100058, - [SMALL_STATE(3771)] = 100072, - [SMALL_STATE(3772)] = 100086, - [SMALL_STATE(3773)] = 100100, - [SMALL_STATE(3774)] = 100114, - [SMALL_STATE(3775)] = 100128, - [SMALL_STATE(3776)] = 100142, - [SMALL_STATE(3777)] = 100156, - [SMALL_STATE(3778)] = 100170, - [SMALL_STATE(3779)] = 100184, - [SMALL_STATE(3780)] = 100198, - [SMALL_STATE(3781)] = 100202, - [SMALL_STATE(3782)] = 100206, - [SMALL_STATE(3783)] = 100210, - [SMALL_STATE(3784)] = 100214, - [SMALL_STATE(3785)] = 100218, - [SMALL_STATE(3786)] = 100222, + [SMALL_STATE(1063)] = 0, + [SMALL_STATE(1064)] = 75, + [SMALL_STATE(1065)] = 148, + [SMALL_STATE(1066)] = 219, + [SMALL_STATE(1067)] = 319, + [SMALL_STATE(1068)] = 419, + [SMALL_STATE(1069)] = 519, + [SMALL_STATE(1070)] = 596, + [SMALL_STATE(1071)] = 675, + [SMALL_STATE(1072)] = 752, + [SMALL_STATE(1073)] = 829, + [SMALL_STATE(1074)] = 893, + [SMALL_STATE(1075)] = 957, + [SMALL_STATE(1076)] = 1021, + [SMALL_STATE(1077)] = 1085, + [SMALL_STATE(1078)] = 1153, + [SMALL_STATE(1079)] = 1217, + [SMALL_STATE(1080)] = 1291, + [SMALL_STATE(1081)] = 1355, + [SMALL_STATE(1082)] = 1419, + [SMALL_STATE(1083)] = 1483, + [SMALL_STATE(1084)] = 1547, + [SMALL_STATE(1085)] = 1618, + [SMALL_STATE(1086)] = 1681, + [SMALL_STATE(1087)] = 1782, + [SMALL_STATE(1088)] = 1845, + [SMALL_STATE(1089)] = 1912, + [SMALL_STATE(1090)] = 1983, + [SMALL_STATE(1091)] = 2046, + [SMALL_STATE(1092)] = 2117, + [SMALL_STATE(1093)] = 2188, + [SMALL_STATE(1094)] = 2255, + [SMALL_STATE(1095)] = 2356, + [SMALL_STATE(1096)] = 2423, + [SMALL_STATE(1097)] = 2486, + [SMALL_STATE(1098)] = 2549, + [SMALL_STATE(1099)] = 2616, + [SMALL_STATE(1100)] = 2683, + [SMALL_STATE(1101)] = 2784, + [SMALL_STATE(1102)] = 2848, + [SMALL_STATE(1103)] = 2912, + [SMALL_STATE(1104)] = 2974, + [SMALL_STATE(1105)] = 3042, + [SMALL_STATE(1106)] = 3104, + [SMALL_STATE(1107)] = 3166, + [SMALL_STATE(1108)] = 3228, + [SMALL_STATE(1109)] = 3298, + [SMALL_STATE(1110)] = 3360, + [SMALL_STATE(1111)] = 3422, + [SMALL_STATE(1112)] = 3484, + [SMALL_STATE(1113)] = 3546, + [SMALL_STATE(1114)] = 3607, + [SMALL_STATE(1115)] = 3668, + [SMALL_STATE(1116)] = 3729, + [SMALL_STATE(1117)] = 3790, + [SMALL_STATE(1118)] = 3851, + [SMALL_STATE(1119)] = 3912, + [SMALL_STATE(1120)] = 3973, + [SMALL_STATE(1121)] = 4034, + [SMALL_STATE(1122)] = 4095, + [SMALL_STATE(1123)] = 4156, + [SMALL_STATE(1124)] = 4217, + [SMALL_STATE(1125)] = 4278, + [SMALL_STATE(1126)] = 4339, + [SMALL_STATE(1127)] = 4400, + [SMALL_STATE(1128)] = 4461, + [SMALL_STATE(1129)] = 4522, + [SMALL_STATE(1130)] = 4583, + [SMALL_STATE(1131)] = 4644, + [SMALL_STATE(1132)] = 4705, + [SMALL_STATE(1133)] = 4766, + [SMALL_STATE(1134)] = 4827, + [SMALL_STATE(1135)] = 4888, + [SMALL_STATE(1136)] = 4949, + [SMALL_STATE(1137)] = 5010, + [SMALL_STATE(1138)] = 5071, + [SMALL_STATE(1139)] = 5132, + [SMALL_STATE(1140)] = 5193, + [SMALL_STATE(1141)] = 5254, + [SMALL_STATE(1142)] = 5315, + [SMALL_STATE(1143)] = 5376, + [SMALL_STATE(1144)] = 5437, + [SMALL_STATE(1145)] = 5498, + [SMALL_STATE(1146)] = 5559, + [SMALL_STATE(1147)] = 5620, + [SMALL_STATE(1148)] = 5681, + [SMALL_STATE(1149)] = 5756, + [SMALL_STATE(1150)] = 5817, + [SMALL_STATE(1151)] = 5880, + [SMALL_STATE(1152)] = 5941, + [SMALL_STATE(1153)] = 6002, + [SMALL_STATE(1154)] = 6063, + [SMALL_STATE(1155)] = 6124, + [SMALL_STATE(1156)] = 6185, + [SMALL_STATE(1157)] = 6248, + [SMALL_STATE(1158)] = 6309, + [SMALL_STATE(1159)] = 6372, + [SMALL_STATE(1160)] = 6433, + [SMALL_STATE(1161)] = 6494, + [SMALL_STATE(1162)] = 6557, + [SMALL_STATE(1163)] = 6618, + [SMALL_STATE(1164)] = 6679, + [SMALL_STATE(1165)] = 6740, + [SMALL_STATE(1166)] = 6801, + [SMALL_STATE(1167)] = 6862, + [SMALL_STATE(1168)] = 6923, + [SMALL_STATE(1169)] = 6984, + [SMALL_STATE(1170)] = 7045, + [SMALL_STATE(1171)] = 7106, + [SMALL_STATE(1172)] = 7167, + [SMALL_STATE(1173)] = 7228, + [SMALL_STATE(1174)] = 7289, + [SMALL_STATE(1175)] = 7350, + [SMALL_STATE(1176)] = 7411, + [SMALL_STATE(1177)] = 7472, + [SMALL_STATE(1178)] = 7533, + [SMALL_STATE(1179)] = 7594, + [SMALL_STATE(1180)] = 7655, + [SMALL_STATE(1181)] = 7716, + [SMALL_STATE(1182)] = 7779, + [SMALL_STATE(1183)] = 7840, + [SMALL_STATE(1184)] = 7901, + [SMALL_STATE(1185)] = 7962, + [SMALL_STATE(1186)] = 8023, + [SMALL_STATE(1187)] = 8084, + [SMALL_STATE(1188)] = 8145, + [SMALL_STATE(1189)] = 8206, + [SMALL_STATE(1190)] = 8267, + [SMALL_STATE(1191)] = 8328, + [SMALL_STATE(1192)] = 8389, + [SMALL_STATE(1193)] = 8450, + [SMALL_STATE(1194)] = 8511, + [SMALL_STATE(1195)] = 8572, + [SMALL_STATE(1196)] = 8633, + [SMALL_STATE(1197)] = 8694, + [SMALL_STATE(1198)] = 8755, + [SMALL_STATE(1199)] = 8816, + [SMALL_STATE(1200)] = 8877, + [SMALL_STATE(1201)] = 8938, + [SMALL_STATE(1202)] = 8999, + [SMALL_STATE(1203)] = 9060, + [SMALL_STATE(1204)] = 9121, + [SMALL_STATE(1205)] = 9182, + [SMALL_STATE(1206)] = 9243, + [SMALL_STATE(1207)] = 9304, + [SMALL_STATE(1208)] = 9365, + [SMALL_STATE(1209)] = 9426, + [SMALL_STATE(1210)] = 9487, + [SMALL_STATE(1211)] = 9548, + [SMALL_STATE(1212)] = 9609, + [SMALL_STATE(1213)] = 9712, + [SMALL_STATE(1214)] = 9775, + [SMALL_STATE(1215)] = 9836, + [SMALL_STATE(1216)] = 9897, + [SMALL_STATE(1217)] = 9958, + [SMALL_STATE(1218)] = 10019, + [SMALL_STATE(1219)] = 10080, + [SMALL_STATE(1220)] = 10141, + [SMALL_STATE(1221)] = 10202, + [SMALL_STATE(1222)] = 10263, + [SMALL_STATE(1223)] = 10324, + [SMALL_STATE(1224)] = 10385, + [SMALL_STATE(1225)] = 10446, + [SMALL_STATE(1226)] = 10507, + [SMALL_STATE(1227)] = 10568, + [SMALL_STATE(1228)] = 10629, + [SMALL_STATE(1229)] = 10690, + [SMALL_STATE(1230)] = 10751, + [SMALL_STATE(1231)] = 10812, + [SMALL_STATE(1232)] = 10873, + [SMALL_STATE(1233)] = 10934, + [SMALL_STATE(1234)] = 10995, + [SMALL_STATE(1235)] = 11056, + [SMALL_STATE(1236)] = 11117, + [SMALL_STATE(1237)] = 11178, + [SMALL_STATE(1238)] = 11281, + [SMALL_STATE(1239)] = 11342, + [SMALL_STATE(1240)] = 11403, + [SMALL_STATE(1241)] = 11464, + [SMALL_STATE(1242)] = 11525, + [SMALL_STATE(1243)] = 11586, + [SMALL_STATE(1244)] = 11647, + [SMALL_STATE(1245)] = 11708, + [SMALL_STATE(1246)] = 11769, + [SMALL_STATE(1247)] = 11830, + [SMALL_STATE(1248)] = 11891, + [SMALL_STATE(1249)] = 11952, + [SMALL_STATE(1250)] = 12013, + [SMALL_STATE(1251)] = 12074, + [SMALL_STATE(1252)] = 12139, + [SMALL_STATE(1253)] = 12200, + [SMALL_STATE(1254)] = 12261, + [SMALL_STATE(1255)] = 12322, + [SMALL_STATE(1256)] = 12383, + [SMALL_STATE(1257)] = 12444, + [SMALL_STATE(1258)] = 12537, + [SMALL_STATE(1259)] = 12598, + [SMALL_STATE(1260)] = 12659, + [SMALL_STATE(1261)] = 12720, + [SMALL_STATE(1262)] = 12781, + [SMALL_STATE(1263)] = 12844, + [SMALL_STATE(1264)] = 12905, + [SMALL_STATE(1265)] = 12968, + [SMALL_STATE(1266)] = 13031, + [SMALL_STATE(1267)] = 13092, + [SMALL_STATE(1268)] = 13157, + [SMALL_STATE(1269)] = 13218, + [SMALL_STATE(1270)] = 13279, + [SMALL_STATE(1271)] = 13340, + [SMALL_STATE(1272)] = 13401, + [SMALL_STATE(1273)] = 13462, + [SMALL_STATE(1274)] = 13523, + [SMALL_STATE(1275)] = 13584, + [SMALL_STATE(1276)] = 13645, + [SMALL_STATE(1277)] = 13706, + [SMALL_STATE(1278)] = 13767, + [SMALL_STATE(1279)] = 13828, + [SMALL_STATE(1280)] = 13889, + [SMALL_STATE(1281)] = 13950, + [SMALL_STATE(1282)] = 14011, + [SMALL_STATE(1283)] = 14104, + [SMALL_STATE(1284)] = 14179, + [SMALL_STATE(1285)] = 14240, + [SMALL_STATE(1286)] = 14343, + [SMALL_STATE(1287)] = 14404, + [SMALL_STATE(1288)] = 14497, + [SMALL_STATE(1289)] = 14558, + [SMALL_STATE(1290)] = 14619, + [SMALL_STATE(1291)] = 14680, + [SMALL_STATE(1292)] = 14741, + [SMALL_STATE(1293)] = 14802, + [SMALL_STATE(1294)] = 14863, + [SMALL_STATE(1295)] = 14926, + [SMALL_STATE(1296)] = 14987, + [SMALL_STATE(1297)] = 15050, + [SMALL_STATE(1298)] = 15111, + [SMALL_STATE(1299)] = 15172, + [SMALL_STATE(1300)] = 15235, + [SMALL_STATE(1301)] = 15296, + [SMALL_STATE(1302)] = 15359, + [SMALL_STATE(1303)] = 15420, + [SMALL_STATE(1304)] = 15483, + [SMALL_STATE(1305)] = 15544, + [SMALL_STATE(1306)] = 15605, + [SMALL_STATE(1307)] = 15666, + [SMALL_STATE(1308)] = 15731, + [SMALL_STATE(1309)] = 15792, + [SMALL_STATE(1310)] = 15853, + [SMALL_STATE(1311)] = 15914, + [SMALL_STATE(1312)] = 15975, + [SMALL_STATE(1313)] = 16036, + [SMALL_STATE(1314)] = 16097, + [SMALL_STATE(1315)] = 16158, + [SMALL_STATE(1316)] = 16219, + [SMALL_STATE(1317)] = 16280, + [SMALL_STATE(1318)] = 16341, + [SMALL_STATE(1319)] = 16402, + [SMALL_STATE(1320)] = 16463, + [SMALL_STATE(1321)] = 16524, + [SMALL_STATE(1322)] = 16585, + [SMALL_STATE(1323)] = 16646, + [SMALL_STATE(1324)] = 16707, + [SMALL_STATE(1325)] = 16768, + [SMALL_STATE(1326)] = 16829, + [SMALL_STATE(1327)] = 16890, + [SMALL_STATE(1328)] = 16951, + [SMALL_STATE(1329)] = 17012, + [SMALL_STATE(1330)] = 17073, + [SMALL_STATE(1331)] = 17134, + [SMALL_STATE(1332)] = 17195, + [SMALL_STATE(1333)] = 17256, + [SMALL_STATE(1334)] = 17319, + [SMALL_STATE(1335)] = 17380, + [SMALL_STATE(1336)] = 17443, + [SMALL_STATE(1337)] = 17506, + [SMALL_STATE(1338)] = 17567, + [SMALL_STATE(1339)] = 17628, + [SMALL_STATE(1340)] = 17689, + [SMALL_STATE(1341)] = 17750, + [SMALL_STATE(1342)] = 17811, + [SMALL_STATE(1343)] = 17872, + [SMALL_STATE(1344)] = 17933, + [SMALL_STATE(1345)] = 17994, + [SMALL_STATE(1346)] = 18055, + [SMALL_STATE(1347)] = 18116, + [SMALL_STATE(1348)] = 18177, + [SMALL_STATE(1349)] = 18238, + [SMALL_STATE(1350)] = 18299, + [SMALL_STATE(1351)] = 18360, + [SMALL_STATE(1352)] = 18421, + [SMALL_STATE(1353)] = 18482, + [SMALL_STATE(1354)] = 18543, + [SMALL_STATE(1355)] = 18604, + [SMALL_STATE(1356)] = 18665, + [SMALL_STATE(1357)] = 18726, + [SMALL_STATE(1358)] = 18787, + [SMALL_STATE(1359)] = 18848, + [SMALL_STATE(1360)] = 18909, + [SMALL_STATE(1361)] = 18970, + [SMALL_STATE(1362)] = 19031, + [SMALL_STATE(1363)] = 19092, + [SMALL_STATE(1364)] = 19153, + [SMALL_STATE(1365)] = 19214, + [SMALL_STATE(1366)] = 19275, + [SMALL_STATE(1367)] = 19336, + [SMALL_STATE(1368)] = 19397, + [SMALL_STATE(1369)] = 19458, + [SMALL_STATE(1370)] = 19519, + [SMALL_STATE(1371)] = 19580, + [SMALL_STATE(1372)] = 19641, + [SMALL_STATE(1373)] = 19702, + [SMALL_STATE(1374)] = 19763, + [SMALL_STATE(1375)] = 19824, + [SMALL_STATE(1376)] = 19885, + [SMALL_STATE(1377)] = 19946, + [SMALL_STATE(1378)] = 20007, + [SMALL_STATE(1379)] = 20068, + [SMALL_STATE(1380)] = 20129, + [SMALL_STATE(1381)] = 20190, + [SMALL_STATE(1382)] = 20251, + [SMALL_STATE(1383)] = 20312, + [SMALL_STATE(1384)] = 20373, + [SMALL_STATE(1385)] = 20434, + [SMALL_STATE(1386)] = 20495, + [SMALL_STATE(1387)] = 20556, + [SMALL_STATE(1388)] = 20617, + [SMALL_STATE(1389)] = 20678, + [SMALL_STATE(1390)] = 20739, + [SMALL_STATE(1391)] = 20800, + [SMALL_STATE(1392)] = 20861, + [SMALL_STATE(1393)] = 20924, + [SMALL_STATE(1394)] = 20985, + [SMALL_STATE(1395)] = 21046, + [SMALL_STATE(1396)] = 21107, + [SMALL_STATE(1397)] = 21168, + [SMALL_STATE(1398)] = 21229, + [SMALL_STATE(1399)] = 21290, + [SMALL_STATE(1400)] = 21351, + [SMALL_STATE(1401)] = 21412, + [SMALL_STATE(1402)] = 21473, + [SMALL_STATE(1403)] = 21534, + [SMALL_STATE(1404)] = 21595, + [SMALL_STATE(1405)] = 21656, + [SMALL_STATE(1406)] = 21717, + [SMALL_STATE(1407)] = 21778, + [SMALL_STATE(1408)] = 21839, + [SMALL_STATE(1409)] = 21900, + [SMALL_STATE(1410)] = 21961, + [SMALL_STATE(1411)] = 22022, + [SMALL_STATE(1412)] = 22083, + [SMALL_STATE(1413)] = 22144, + [SMALL_STATE(1414)] = 22205, + [SMALL_STATE(1415)] = 22266, + [SMALL_STATE(1416)] = 22327, + [SMALL_STATE(1417)] = 22388, + [SMALL_STATE(1418)] = 22449, + [SMALL_STATE(1419)] = 22510, + [SMALL_STATE(1420)] = 22571, + [SMALL_STATE(1421)] = 22632, + [SMALL_STATE(1422)] = 22693, + [SMALL_STATE(1423)] = 22754, + [SMALL_STATE(1424)] = 22815, + [SMALL_STATE(1425)] = 22876, + [SMALL_STATE(1426)] = 22937, + [SMALL_STATE(1427)] = 22998, + [SMALL_STATE(1428)] = 23059, + [SMALL_STATE(1429)] = 23162, + [SMALL_STATE(1430)] = 23223, + [SMALL_STATE(1431)] = 23284, + [SMALL_STATE(1432)] = 23345, + [SMALL_STATE(1433)] = 23406, + [SMALL_STATE(1434)] = 23502, + [SMALL_STATE(1435)] = 23562, + [SMALL_STATE(1436)] = 23622, + [SMALL_STATE(1437)] = 23682, + [SMALL_STATE(1438)] = 23742, + [SMALL_STATE(1439)] = 23802, + [SMALL_STATE(1440)] = 23862, + [SMALL_STATE(1441)] = 23922, + [SMALL_STATE(1442)] = 23982, + [SMALL_STATE(1443)] = 24042, + [SMALL_STATE(1444)] = 24102, + [SMALL_STATE(1445)] = 24162, + [SMALL_STATE(1446)] = 24226, + [SMALL_STATE(1447)] = 24286, + [SMALL_STATE(1448)] = 24346, + [SMALL_STATE(1449)] = 24406, + [SMALL_STATE(1450)] = 24472, + [SMALL_STATE(1451)] = 24532, + [SMALL_STATE(1452)] = 24592, + [SMALL_STATE(1453)] = 24652, + [SMALL_STATE(1454)] = 24712, + [SMALL_STATE(1455)] = 24772, + [SMALL_STATE(1456)] = 24840, + [SMALL_STATE(1457)] = 24900, + [SMALL_STATE(1458)] = 24960, + [SMALL_STATE(1459)] = 25020, + [SMALL_STATE(1460)] = 25080, + [SMALL_STATE(1461)] = 25140, + [SMALL_STATE(1462)] = 25200, + [SMALL_STATE(1463)] = 25260, + [SMALL_STATE(1464)] = 25320, + [SMALL_STATE(1465)] = 25380, + [SMALL_STATE(1466)] = 25440, + [SMALL_STATE(1467)] = 25500, + [SMALL_STATE(1468)] = 25566, + [SMALL_STATE(1469)] = 25626, + [SMALL_STATE(1470)] = 25686, + [SMALL_STATE(1471)] = 25746, + [SMALL_STATE(1472)] = 25806, + [SMALL_STATE(1473)] = 25866, + [SMALL_STATE(1474)] = 25926, + [SMALL_STATE(1475)] = 25986, + [SMALL_STATE(1476)] = 26046, + [SMALL_STATE(1477)] = 26106, + [SMALL_STATE(1478)] = 26172, + [SMALL_STATE(1479)] = 26232, + [SMALL_STATE(1480)] = 26292, + [SMALL_STATE(1481)] = 26352, + [SMALL_STATE(1482)] = 26412, + [SMALL_STATE(1483)] = 26472, + [SMALL_STATE(1484)] = 26532, + [SMALL_STATE(1485)] = 26592, + [SMALL_STATE(1486)] = 26652, + [SMALL_STATE(1487)] = 26712, + [SMALL_STATE(1488)] = 26786, + [SMALL_STATE(1489)] = 26846, + [SMALL_STATE(1490)] = 26906, + [SMALL_STATE(1491)] = 26966, + [SMALL_STATE(1492)] = 27026, + [SMALL_STATE(1493)] = 27086, + [SMALL_STATE(1494)] = 27146, + [SMALL_STATE(1495)] = 27206, + [SMALL_STATE(1496)] = 27266, + [SMALL_STATE(1497)] = 27326, + [SMALL_STATE(1498)] = 27386, + [SMALL_STATE(1499)] = 27448, + [SMALL_STATE(1500)] = 27508, + [SMALL_STATE(1501)] = 27568, + [SMALL_STATE(1502)] = 27632, + [SMALL_STATE(1503)] = 27698, + [SMALL_STATE(1504)] = 27758, + [SMALL_STATE(1505)] = 27818, + [SMALL_STATE(1506)] = 27878, + [SMALL_STATE(1507)] = 27938, + [SMALL_STATE(1508)] = 27998, + [SMALL_STATE(1509)] = 28058, + [SMALL_STATE(1510)] = 28118, + [SMALL_STATE(1511)] = 28178, + [SMALL_STATE(1512)] = 28238, + [SMALL_STATE(1513)] = 28298, + [SMALL_STATE(1514)] = 28358, + [SMALL_STATE(1515)] = 28418, + [SMALL_STATE(1516)] = 28478, + [SMALL_STATE(1517)] = 28540, + [SMALL_STATE(1518)] = 28600, + [SMALL_STATE(1519)] = 28660, + [SMALL_STATE(1520)] = 28720, + [SMALL_STATE(1521)] = 28780, + [SMALL_STATE(1522)] = 28840, + [SMALL_STATE(1523)] = 28900, + [SMALL_STATE(1524)] = 28960, + [SMALL_STATE(1525)] = 29020, + [SMALL_STATE(1526)] = 29080, + [SMALL_STATE(1527)] = 29140, + [SMALL_STATE(1528)] = 29200, + [SMALL_STATE(1529)] = 29260, + [SMALL_STATE(1530)] = 29320, + [SMALL_STATE(1531)] = 29380, + [SMALL_STATE(1532)] = 29440, + [SMALL_STATE(1533)] = 29500, + [SMALL_STATE(1534)] = 29560, + [SMALL_STATE(1535)] = 29620, + [SMALL_STATE(1536)] = 29680, + [SMALL_STATE(1537)] = 29740, + [SMALL_STATE(1538)] = 29800, + [SMALL_STATE(1539)] = 29860, + [SMALL_STATE(1540)] = 29920, + [SMALL_STATE(1541)] = 29980, + [SMALL_STATE(1542)] = 30040, + [SMALL_STATE(1543)] = 30100, + [SMALL_STATE(1544)] = 30160, + [SMALL_STATE(1545)] = 30220, + [SMALL_STATE(1546)] = 30280, + [SMALL_STATE(1547)] = 30340, + [SMALL_STATE(1548)] = 30400, + [SMALL_STATE(1549)] = 30460, + [SMALL_STATE(1550)] = 30520, + [SMALL_STATE(1551)] = 30580, + [SMALL_STATE(1552)] = 30640, + [SMALL_STATE(1553)] = 30700, + [SMALL_STATE(1554)] = 30760, + [SMALL_STATE(1555)] = 30820, + [SMALL_STATE(1556)] = 30880, + [SMALL_STATE(1557)] = 30941, + [SMALL_STATE(1558)] = 31002, + [SMALL_STATE(1559)] = 31073, + [SMALL_STATE(1560)] = 31142, + [SMALL_STATE(1561)] = 31232, + [SMALL_STATE(1562)] = 31322, + [SMALL_STATE(1563)] = 31408, + [SMALL_STATE(1564)] = 31500, + [SMALL_STATE(1565)] = 31586, + [SMALL_STATE(1566)] = 31672, + [SMALL_STATE(1567)] = 31732, + [SMALL_STATE(1568)] = 31824, + [SMALL_STATE(1569)] = 31882, + [SMALL_STATE(1570)] = 31948, + [SMALL_STATE(1571)] = 32006, + [SMALL_STATE(1572)] = 32064, + [SMALL_STATE(1573)] = 32150, + [SMALL_STATE(1574)] = 32236, + [SMALL_STATE(1575)] = 32322, + [SMALL_STATE(1576)] = 32382, + [SMALL_STATE(1577)] = 32452, + [SMALL_STATE(1578)] = 32544, + [SMALL_STATE(1579)] = 32634, + [SMALL_STATE(1580)] = 32704, + [SMALL_STATE(1581)] = 32774, + [SMALL_STATE(1582)] = 32860, + [SMALL_STATE(1583)] = 32950, + [SMALL_STATE(1584)] = 33018, + [SMALL_STATE(1585)] = 33092, + [SMALL_STATE(1586)] = 33164, + [SMALL_STATE(1587)] = 33240, + [SMALL_STATE(1588)] = 33322, + [SMALL_STATE(1589)] = 33406, + [SMALL_STATE(1590)] = 33476, + [SMALL_STATE(1591)] = 33566, + [SMALL_STATE(1592)] = 33656, + [SMALL_STATE(1593)] = 33734, + [SMALL_STATE(1594)] = 33820, + [SMALL_STATE(1595)] = 33912, + [SMALL_STATE(1596)] = 33975, + [SMALL_STATE(1597)] = 34038, + [SMALL_STATE(1598)] = 34103, + [SMALL_STATE(1599)] = 34170, + [SMALL_STATE(1600)] = 34228, + [SMALL_STATE(1601)] = 34288, + [SMALL_STATE(1602)] = 34348, + [SMALL_STATE(1603)] = 34408, + [SMALL_STATE(1604)] = 34464, + [SMALL_STATE(1605)] = 34524, + [SMALL_STATE(1606)] = 34584, + [SMALL_STATE(1607)] = 34640, + [SMALL_STATE(1608)] = 34700, + [SMALL_STATE(1609)] = 34756, + [SMALL_STATE(1610)] = 34820, + [SMALL_STATE(1611)] = 34876, + [SMALL_STATE(1612)] = 34940, + [SMALL_STATE(1613)] = 34998, + [SMALL_STATE(1614)] = 35056, + [SMALL_STATE(1615)] = 35120, + [SMALL_STATE(1616)] = 35184, + [SMALL_STATE(1617)] = 35242, + [SMALL_STATE(1618)] = 35302, + [SMALL_STATE(1619)] = 35359, + [SMALL_STATE(1620)] = 35454, + [SMALL_STATE(1621)] = 35511, + [SMALL_STATE(1622)] = 35566, + [SMALL_STATE(1623)] = 35625, + [SMALL_STATE(1624)] = 35680, + [SMALL_STATE(1625)] = 35735, + [SMALL_STATE(1626)] = 35824, + [SMALL_STATE(1627)] = 35879, + [SMALL_STATE(1628)] = 35936, + [SMALL_STATE(1629)] = 35991, + [SMALL_STATE(1630)] = 36046, + [SMALL_STATE(1631)] = 36101, + [SMALL_STATE(1632)] = 36156, + [SMALL_STATE(1633)] = 36245, + [SMALL_STATE(1634)] = 36304, + [SMALL_STATE(1635)] = 36363, + [SMALL_STATE(1636)] = 36420, + [SMALL_STATE(1637)] = 36515, + [SMALL_STATE(1638)] = 36610, + [SMALL_STATE(1639)] = 36667, + [SMALL_STATE(1640)] = 36762, + [SMALL_STATE(1641)] = 36857, + [SMALL_STATE(1642)] = 36952, + [SMALL_STATE(1643)] = 37047, + [SMALL_STATE(1644)] = 37142, + [SMALL_STATE(1645)] = 37237, + [SMALL_STATE(1646)] = 37294, + [SMALL_STATE(1647)] = 37351, + [SMALL_STATE(1648)] = 37440, + [SMALL_STATE(1649)] = 37535, + [SMALL_STATE(1650)] = 37630, + [SMALL_STATE(1651)] = 37725, + [SMALL_STATE(1652)] = 37784, + [SMALL_STATE(1653)] = 37873, + [SMALL_STATE(1654)] = 37927, + [SMALL_STATE(1655)] = 37981, + [SMALL_STATE(1656)] = 38067, + [SMALL_STATE(1657)] = 38123, + [SMALL_STATE(1658)] = 38197, + [SMALL_STATE(1659)] = 38253, + [SMALL_STATE(1660)] = 38307, + [SMALL_STATE(1661)] = 38361, + [SMALL_STATE(1662)] = 38415, + [SMALL_STATE(1663)] = 38469, + [SMALL_STATE(1664)] = 38523, + [SMALL_STATE(1665)] = 38577, + [SMALL_STATE(1666)] = 38633, + [SMALL_STATE(1667)] = 38701, + [SMALL_STATE(1668)] = 38755, + [SMALL_STATE(1669)] = 38811, + [SMALL_STATE(1670)] = 38865, + [SMALL_STATE(1671)] = 38919, + [SMALL_STATE(1672)] = 38973, + [SMALL_STATE(1673)] = 39027, + [SMALL_STATE(1674)] = 39115, + [SMALL_STATE(1675)] = 39169, + [SMALL_STATE(1676)] = 39251, + [SMALL_STATE(1677)] = 39323, + [SMALL_STATE(1678)] = 39379, + [SMALL_STATE(1679)] = 39457, + [SMALL_STATE(1680)] = 39539, + [SMALL_STATE(1681)] = 39625, + [SMALL_STATE(1682)] = 39681, + [SMALL_STATE(1683)] = 39767, + [SMALL_STATE(1684)] = 39823, + [SMALL_STATE(1685)] = 39915, + [SMALL_STATE(1686)] = 39995, + [SMALL_STATE(1687)] = 40083, + [SMALL_STATE(1688)] = 40175, + [SMALL_STATE(1689)] = 40231, + [SMALL_STATE(1690)] = 40323, + [SMALL_STATE(1691)] = 40379, + [SMALL_STATE(1692)] = 40445, + [SMALL_STATE(1693)] = 40501, + [SMALL_STATE(1694)] = 40557, + [SMALL_STATE(1695)] = 40643, + [SMALL_STATE(1696)] = 40707, + [SMALL_STATE(1697)] = 40777, + [SMALL_STATE(1698)] = 40857, + [SMALL_STATE(1699)] = 40911, + [SMALL_STATE(1700)] = 40965, + [SMALL_STATE(1701)] = 41057, + [SMALL_STATE(1702)] = 41145, + [SMALL_STATE(1703)] = 41201, + [SMALL_STATE(1704)] = 41293, + [SMALL_STATE(1705)] = 41349, + [SMALL_STATE(1706)] = 41437, + [SMALL_STATE(1707)] = 41495, + [SMALL_STATE(1708)] = 41587, + [SMALL_STATE(1709)] = 41643, + [SMALL_STATE(1710)] = 41731, + [SMALL_STATE(1711)] = 41819, + [SMALL_STATE(1712)] = 41905, + [SMALL_STATE(1713)] = 41961, + [SMALL_STATE(1714)] = 42017, + [SMALL_STATE(1715)] = 42103, + [SMALL_STATE(1716)] = 42170, + [SMALL_STATE(1717)] = 42223, + [SMALL_STATE(1718)] = 42312, + [SMALL_STATE(1719)] = 42365, + [SMALL_STATE(1720)] = 42418, + [SMALL_STATE(1721)] = 42471, + [SMALL_STATE(1722)] = 42524, + [SMALL_STATE(1723)] = 42577, + [SMALL_STATE(1724)] = 42666, + [SMALL_STATE(1725)] = 42719, + [SMALL_STATE(1726)] = 42772, + [SMALL_STATE(1727)] = 42825, + [SMALL_STATE(1728)] = 42914, + [SMALL_STATE(1729)] = 42967, + [SMALL_STATE(1730)] = 43020, + [SMALL_STATE(1731)] = 43073, + [SMALL_STATE(1732)] = 43132, + [SMALL_STATE(1733)] = 43185, + [SMALL_STATE(1734)] = 43238, + [SMALL_STATE(1735)] = 43297, + [SMALL_STATE(1736)] = 43350, + [SMALL_STATE(1737)] = 43403, + [SMALL_STATE(1738)] = 43456, + [SMALL_STATE(1739)] = 43509, + [SMALL_STATE(1740)] = 43594, + [SMALL_STATE(1741)] = 43647, + [SMALL_STATE(1742)] = 43736, + [SMALL_STATE(1743)] = 43823, + [SMALL_STATE(1744)] = 43904, + [SMALL_STATE(1745)] = 43957, + [SMALL_STATE(1746)] = 44010, + [SMALL_STATE(1747)] = 44095, + [SMALL_STATE(1748)] = 44148, + [SMALL_STATE(1749)] = 44233, + [SMALL_STATE(1750)] = 44318, + [SMALL_STATE(1751)] = 44405, + [SMALL_STATE(1752)] = 44458, + [SMALL_STATE(1753)] = 44511, + [SMALL_STATE(1754)] = 44564, + [SMALL_STATE(1755)] = 44617, + [SMALL_STATE(1756)] = 44670, + [SMALL_STATE(1757)] = 44723, + [SMALL_STATE(1758)] = 44776, + [SMALL_STATE(1759)] = 44829, + [SMALL_STATE(1760)] = 44882, + [SMALL_STATE(1761)] = 44935, + [SMALL_STATE(1762)] = 44988, + [SMALL_STATE(1763)] = 45041, + [SMALL_STATE(1764)] = 45094, + [SMALL_STATE(1765)] = 45171, + [SMALL_STATE(1766)] = 45230, + [SMALL_STATE(1767)] = 45317, + [SMALL_STATE(1768)] = 45402, + [SMALL_STATE(1769)] = 45489, + [SMALL_STATE(1770)] = 45576, + [SMALL_STATE(1771)] = 45639, + [SMALL_STATE(1772)] = 45708, + [SMALL_STATE(1773)] = 45775, + [SMALL_STATE(1774)] = 45846, + [SMALL_STATE(1775)] = 45923, + [SMALL_STATE(1776)] = 46002, + [SMALL_STATE(1777)] = 46067, + [SMALL_STATE(1778)] = 46152, + [SMALL_STATE(1779)] = 46237, + [SMALL_STATE(1780)] = 46310, + [SMALL_STATE(1781)] = 46391, + [SMALL_STATE(1782)] = 46476, + [SMALL_STATE(1783)] = 46529, + [SMALL_STATE(1784)] = 46582, + [SMALL_STATE(1785)] = 46635, + [SMALL_STATE(1786)] = 46688, + [SMALL_STATE(1787)] = 46741, + [SMALL_STATE(1788)] = 46794, + [SMALL_STATE(1789)] = 46881, + [SMALL_STATE(1790)] = 46970, + [SMALL_STATE(1791)] = 47023, + [SMALL_STATE(1792)] = 47076, + [SMALL_STATE(1793)] = 47129, + [SMALL_STATE(1794)] = 47218, + [SMALL_STATE(1795)] = 47271, + [SMALL_STATE(1796)] = 47324, + [SMALL_STATE(1797)] = 47377, + [SMALL_STATE(1798)] = 47430, + [SMALL_STATE(1799)] = 47517, + [SMALL_STATE(1800)] = 47570, + [SMALL_STATE(1801)] = 47623, + [SMALL_STATE(1802)] = 47676, + [SMALL_STATE(1803)] = 47729, + [SMALL_STATE(1804)] = 47782, + [SMALL_STATE(1805)] = 47835, + [SMALL_STATE(1806)] = 47888, + [SMALL_STATE(1807)] = 47941, + [SMALL_STATE(1808)] = 47994, + [SMALL_STATE(1809)] = 48047, + [SMALL_STATE(1810)] = 48100, + [SMALL_STATE(1811)] = 48153, + [SMALL_STATE(1812)] = 48206, + [SMALL_STATE(1813)] = 48259, + [SMALL_STATE(1814)] = 48312, + [SMALL_STATE(1815)] = 48365, + [SMALL_STATE(1816)] = 48418, + [SMALL_STATE(1817)] = 48507, + [SMALL_STATE(1818)] = 48594, + [SMALL_STATE(1819)] = 48647, + [SMALL_STATE(1820)] = 48700, + [SMALL_STATE(1821)] = 48787, + [SMALL_STATE(1822)] = 48872, + [SMALL_STATE(1823)] = 48925, + [SMALL_STATE(1824)] = 48978, + [SMALL_STATE(1825)] = 49031, + [SMALL_STATE(1826)] = 49120, + [SMALL_STATE(1827)] = 49173, + [SMALL_STATE(1828)] = 49236, + [SMALL_STATE(1829)] = 49305, + [SMALL_STATE(1830)] = 49376, + [SMALL_STATE(1831)] = 49453, + [SMALL_STATE(1832)] = 49532, + [SMALL_STATE(1833)] = 49597, + [SMALL_STATE(1834)] = 49682, + [SMALL_STATE(1835)] = 49767, + [SMALL_STATE(1836)] = 49848, + [SMALL_STATE(1837)] = 49901, + [SMALL_STATE(1838)] = 49954, + [SMALL_STATE(1839)] = 50041, + [SMALL_STATE(1840)] = 50094, + [SMALL_STATE(1841)] = 50147, + [SMALL_STATE(1842)] = 50200, + [SMALL_STATE(1843)] = 50253, + [SMALL_STATE(1844)] = 50306, + [SMALL_STATE(1845)] = 50359, + [SMALL_STATE(1846)] = 50412, + [SMALL_STATE(1847)] = 50465, + [SMALL_STATE(1848)] = 50552, + [SMALL_STATE(1849)] = 50605, + [SMALL_STATE(1850)] = 50658, + [SMALL_STATE(1851)] = 50711, + [SMALL_STATE(1852)] = 50764, + [SMALL_STATE(1853)] = 50817, + [SMALL_STATE(1854)] = 50870, + [SMALL_STATE(1855)] = 50923, + [SMALL_STATE(1856)] = 51010, + [SMALL_STATE(1857)] = 51063, + [SMALL_STATE(1858)] = 51150, + [SMALL_STATE(1859)] = 51203, + [SMALL_STATE(1860)] = 51256, + [SMALL_STATE(1861)] = 51309, + [SMALL_STATE(1862)] = 51396, + [SMALL_STATE(1863)] = 51483, + [SMALL_STATE(1864)] = 51544, + [SMALL_STATE(1865)] = 51597, + [SMALL_STATE(1866)] = 51650, + [SMALL_STATE(1867)] = 51739, + [SMALL_STATE(1868)] = 51828, + [SMALL_STATE(1869)] = 51917, + [SMALL_STATE(1870)] = 51970, + [SMALL_STATE(1871)] = 52059, + [SMALL_STATE(1872)] = 52112, + [SMALL_STATE(1873)] = 52201, + [SMALL_STATE(1874)] = 52288, + [SMALL_STATE(1875)] = 52341, + [SMALL_STATE(1876)] = 52430, + [SMALL_STATE(1877)] = 52483, + [SMALL_STATE(1878)] = 52536, + [SMALL_STATE(1879)] = 52595, + [SMALL_STATE(1880)] = 52684, + [SMALL_STATE(1881)] = 52773, + [SMALL_STATE(1882)] = 52862, + [SMALL_STATE(1883)] = 52951, + [SMALL_STATE(1884)] = 53040, + [SMALL_STATE(1885)] = 53129, + [SMALL_STATE(1886)] = 53218, + [SMALL_STATE(1887)] = 53307, + [SMALL_STATE(1888)] = 53396, + [SMALL_STATE(1889)] = 53485, + [SMALL_STATE(1890)] = 53574, + [SMALL_STATE(1891)] = 53655, + [SMALL_STATE(1892)] = 53740, + [SMALL_STATE(1893)] = 53829, + [SMALL_STATE(1894)] = 53914, + [SMALL_STATE(1895)] = 53999, + [SMALL_STATE(1896)] = 54088, + [SMALL_STATE(1897)] = 54177, + [SMALL_STATE(1898)] = 54266, + [SMALL_STATE(1899)] = 54355, + [SMALL_STATE(1900)] = 54444, + [SMALL_STATE(1901)] = 54533, + [SMALL_STATE(1902)] = 54622, + [SMALL_STATE(1903)] = 54711, + [SMALL_STATE(1904)] = 54800, + [SMALL_STATE(1905)] = 54889, + [SMALL_STATE(1906)] = 54978, + [SMALL_STATE(1907)] = 55065, + [SMALL_STATE(1908)] = 55154, + [SMALL_STATE(1909)] = 55243, + [SMALL_STATE(1910)] = 55332, + [SMALL_STATE(1911)] = 55421, + [SMALL_STATE(1912)] = 55508, + [SMALL_STATE(1913)] = 55595, + [SMALL_STATE(1914)] = 55684, + [SMALL_STATE(1915)] = 55773, + [SMALL_STATE(1916)] = 55862, + [SMALL_STATE(1917)] = 55951, + [SMALL_STATE(1918)] = 56040, + [SMALL_STATE(1919)] = 56129, + [SMALL_STATE(1920)] = 56182, + [SMALL_STATE(1921)] = 56235, + [SMALL_STATE(1922)] = 56288, + [SMALL_STATE(1923)] = 56341, + [SMALL_STATE(1924)] = 56394, + [SMALL_STATE(1925)] = 56447, + [SMALL_STATE(1926)] = 56500, + [SMALL_STATE(1927)] = 56577, + [SMALL_STATE(1928)] = 56630, + [SMALL_STATE(1929)] = 56717, + [SMALL_STATE(1930)] = 56770, + [SMALL_STATE(1931)] = 56857, + [SMALL_STATE(1932)] = 56910, + [SMALL_STATE(1933)] = 56999, + [SMALL_STATE(1934)] = 57086, + [SMALL_STATE(1935)] = 57175, + [SMALL_STATE(1936)] = 57264, + [SMALL_STATE(1937)] = 57337, + [SMALL_STATE(1938)] = 57411, + [SMALL_STATE(1939)] = 57497, + [SMALL_STATE(1940)] = 57583, + [SMALL_STATE(1941)] = 57669, + [SMALL_STATE(1942)] = 57755, + [SMALL_STATE(1943)] = 57841, + [SMALL_STATE(1944)] = 57927, + [SMALL_STATE(1945)] = 58013, + [SMALL_STATE(1946)] = 58097, + [SMALL_STATE(1947)] = 58183, + [SMALL_STATE(1948)] = 58269, + [SMALL_STATE(1949)] = 58355, + [SMALL_STATE(1950)] = 58441, + [SMALL_STATE(1951)] = 58527, + [SMALL_STATE(1952)] = 58613, + [SMALL_STATE(1953)] = 58699, + [SMALL_STATE(1954)] = 58785, + [SMALL_STATE(1955)] = 58871, + [SMALL_STATE(1956)] = 58945, + [SMALL_STATE(1957)] = 59019, + [SMALL_STATE(1958)] = 59105, + [SMALL_STATE(1959)] = 59191, + [SMALL_STATE(1960)] = 59265, + [SMALL_STATE(1961)] = 59351, + [SMALL_STATE(1962)] = 59425, + [SMALL_STATE(1963)] = 59511, + [SMALL_STATE(1964)] = 59597, + [SMALL_STATE(1965)] = 59681, + [SMALL_STATE(1966)] = 59767, + [SMALL_STATE(1967)] = 59853, + [SMALL_STATE(1968)] = 59939, + [SMALL_STATE(1969)] = 60025, + [SMALL_STATE(1970)] = 60111, + [SMALL_STATE(1971)] = 60197, + [SMALL_STATE(1972)] = 60283, + [SMALL_STATE(1973)] = 60369, + [SMALL_STATE(1974)] = 60455, + [SMALL_STATE(1975)] = 60530, + [SMALL_STATE(1976)] = 60605, + [SMALL_STATE(1977)] = 60680, + [SMALL_STATE(1978)] = 60755, + [SMALL_STATE(1979)] = 60830, + [SMALL_STATE(1980)] = 60905, + [SMALL_STATE(1981)] = 60980, + [SMALL_STATE(1982)] = 61055, + [SMALL_STATE(1983)] = 61102, + [SMALL_STATE(1984)] = 61149, + [SMALL_STATE(1985)] = 61196, + [SMALL_STATE(1986)] = 61258, + [SMALL_STATE(1987)] = 61320, + [SMALL_STATE(1988)] = 61382, + [SMALL_STATE(1989)] = 61444, + [SMALL_STATE(1990)] = 61506, + [SMALL_STATE(1991)] = 61568, + [SMALL_STATE(1992)] = 61630, + [SMALL_STATE(1993)] = 61692, + [SMALL_STATE(1994)] = 61754, + [SMALL_STATE(1995)] = 61813, + [SMALL_STATE(1996)] = 61872, + [SMALL_STATE(1997)] = 61908, + [SMALL_STATE(1998)] = 61944, + [SMALL_STATE(1999)] = 61981, + [SMALL_STATE(2000)] = 62018, + [SMALL_STATE(2001)] = 62055, + [SMALL_STATE(2002)] = 62108, + [SMALL_STATE(2003)] = 62145, + [SMALL_STATE(2004)] = 62179, + [SMALL_STATE(2005)] = 62213, + [SMALL_STATE(2006)] = 62249, + [SMALL_STATE(2007)] = 62283, + [SMALL_STATE(2008)] = 62317, + [SMALL_STATE(2009)] = 62361, + [SMALL_STATE(2010)] = 62397, + [SMALL_STATE(2011)] = 62441, + [SMALL_STATE(2012)] = 62477, + [SMALL_STATE(2013)] = 62521, + [SMALL_STATE(2014)] = 62557, + [SMALL_STATE(2015)] = 62590, + [SMALL_STATE(2016)] = 62623, + [SMALL_STATE(2017)] = 62674, + [SMALL_STATE(2018)] = 62705, + [SMALL_STATE(2019)] = 62746, + [SMALL_STATE(2020)] = 62779, + [SMALL_STATE(2021)] = 62812, + [SMALL_STATE(2022)] = 62850, + [SMALL_STATE(2023)] = 62910, + [SMALL_STATE(2024)] = 62954, + [SMALL_STATE(2025)] = 62986, + [SMALL_STATE(2026)] = 63046, + [SMALL_STATE(2027)] = 63084, + [SMALL_STATE(2028)] = 63122, + [SMALL_STATE(2029)] = 63168, + [SMALL_STATE(2030)] = 63206, + [SMALL_STATE(2031)] = 63238, + [SMALL_STATE(2032)] = 63270, + [SMALL_STATE(2033)] = 63299, + [SMALL_STATE(2034)] = 63340, + [SMALL_STATE(2035)] = 63393, + [SMALL_STATE(2036)] = 63422, + [SMALL_STATE(2037)] = 63455, + [SMALL_STATE(2038)] = 63488, + [SMALL_STATE(2039)] = 63517, + [SMALL_STATE(2040)] = 63572, + [SMALL_STATE(2041)] = 63605, + [SMALL_STATE(2042)] = 63648, + [SMALL_STATE(2043)] = 63677, + [SMALL_STATE(2044)] = 63706, + [SMALL_STATE(2045)] = 63737, + [SMALL_STATE(2046)] = 63766, + [SMALL_STATE(2047)] = 63819, + [SMALL_STATE(2048)] = 63848, + [SMALL_STATE(2049)] = 63877, + [SMALL_STATE(2050)] = 63910, + [SMALL_STATE(2051)] = 63943, + [SMALL_STATE(2052)] = 63972, + [SMALL_STATE(2053)] = 64005, + [SMALL_STATE(2054)] = 64049, + [SMALL_STATE(2055)] = 64077, + [SMALL_STATE(2056)] = 64105, + [SMALL_STATE(2057)] = 64133, + [SMALL_STATE(2058)] = 64161, + [SMALL_STATE(2059)] = 64189, + [SMALL_STATE(2060)] = 64217, + [SMALL_STATE(2061)] = 64245, + [SMALL_STATE(2062)] = 64273, + [SMALL_STATE(2063)] = 64301, + [SMALL_STATE(2064)] = 64329, + [SMALL_STATE(2065)] = 64357, + [SMALL_STATE(2066)] = 64385, + [SMALL_STATE(2067)] = 64413, + [SMALL_STATE(2068)] = 64441, + [SMALL_STATE(2069)] = 64471, + [SMALL_STATE(2070)] = 64499, + [SMALL_STATE(2071)] = 64527, + [SMALL_STATE(2072)] = 64555, + [SMALL_STATE(2073)] = 64583, + [SMALL_STATE(2074)] = 64611, + [SMALL_STATE(2075)] = 64639, + [SMALL_STATE(2076)] = 64667, + [SMALL_STATE(2077)] = 64695, + [SMALL_STATE(2078)] = 64723, + [SMALL_STATE(2079)] = 64751, + [SMALL_STATE(2080)] = 64779, + [SMALL_STATE(2081)] = 64807, + [SMALL_STATE(2082)] = 64835, + [SMALL_STATE(2083)] = 64863, + [SMALL_STATE(2084)] = 64891, + [SMALL_STATE(2085)] = 64919, + [SMALL_STATE(2086)] = 64947, + [SMALL_STATE(2087)] = 64975, + [SMALL_STATE(2088)] = 65003, + [SMALL_STATE(2089)] = 65031, + [SMALL_STATE(2090)] = 65061, + [SMALL_STATE(2091)] = 65089, + [SMALL_STATE(2092)] = 65118, + [SMALL_STATE(2093)] = 65149, + [SMALL_STATE(2094)] = 65178, + [SMALL_STATE(2095)] = 65207, + [SMALL_STATE(2096)] = 65236, + [SMALL_STATE(2097)] = 65265, + [SMALL_STATE(2098)] = 65294, + [SMALL_STATE(2099)] = 65323, + [SMALL_STATE(2100)] = 65352, + [SMALL_STATE(2101)] = 65387, + [SMALL_STATE(2102)] = 65416, + [SMALL_STATE(2103)] = 65445, + [SMALL_STATE(2104)] = 65475, + [SMALL_STATE(2105)] = 65507, + [SMALL_STATE(2106)] = 65539, + [SMALL_STATE(2107)] = 65585, + [SMALL_STATE(2108)] = 65617, + [SMALL_STATE(2109)] = 65649, + [SMALL_STATE(2110)] = 65693, + [SMALL_STATE(2111)] = 65733, + [SMALL_STATE(2112)] = 65765, + [SMALL_STATE(2113)] = 65793, + [SMALL_STATE(2114)] = 65825, + [SMALL_STATE(2115)] = 65857, + [SMALL_STATE(2116)] = 65889, + [SMALL_STATE(2117)] = 65921, + [SMALL_STATE(2118)] = 65953, + [SMALL_STATE(2119)] = 65985, + [SMALL_STATE(2120)] = 66017, + [SMALL_STATE(2121)] = 66060, + [SMALL_STATE(2122)] = 66103, + [SMALL_STATE(2123)] = 66140, + [SMALL_STATE(2124)] = 66183, + [SMALL_STATE(2125)] = 66226, + [SMALL_STATE(2126)] = 66255, + [SMALL_STATE(2127)] = 66298, + [SMALL_STATE(2128)] = 66341, + [SMALL_STATE(2129)] = 66370, + [SMALL_STATE(2130)] = 66400, + [SMALL_STATE(2131)] = 66428, + [SMALL_STATE(2132)] = 66466, + [SMALL_STATE(2133)] = 66494, + [SMALL_STATE(2134)] = 66532, + [SMALL_STATE(2135)] = 66556, + [SMALL_STATE(2136)] = 66584, + [SMALL_STATE(2137)] = 66612, + [SMALL_STATE(2138)] = 66640, + [SMALL_STATE(2139)] = 66668, + [SMALL_STATE(2140)] = 66696, + [SMALL_STATE(2141)] = 66734, + [SMALL_STATE(2142)] = 66774, + [SMALL_STATE(2143)] = 66802, + [SMALL_STATE(2144)] = 66836, + [SMALL_STATE(2145)] = 66860, + [SMALL_STATE(2146)] = 66884, + [SMALL_STATE(2147)] = 66914, + [SMALL_STATE(2148)] = 66954, + [SMALL_STATE(2149)] = 66982, + [SMALL_STATE(2150)] = 67012, + [SMALL_STATE(2151)] = 67036, + [SMALL_STATE(2152)] = 67074, + [SMALL_STATE(2153)] = 67102, + [SMALL_STATE(2154)] = 67142, + [SMALL_STATE(2155)] = 67182, + [SMALL_STATE(2156)] = 67220, + [SMALL_STATE(2157)] = 67258, + [SMALL_STATE(2158)] = 67296, + [SMALL_STATE(2159)] = 67336, + [SMALL_STATE(2160)] = 67374, + [SMALL_STATE(2161)] = 67412, + [SMALL_STATE(2162)] = 67450, + [SMALL_STATE(2163)] = 67478, + [SMALL_STATE(2164)] = 67516, + [SMALL_STATE(2165)] = 67556, + [SMALL_STATE(2166)] = 67584, + [SMALL_STATE(2167)] = 67624, + [SMALL_STATE(2168)] = 67652, + [SMALL_STATE(2169)] = 67680, + [SMALL_STATE(2170)] = 67708, + [SMALL_STATE(2171)] = 67748, + [SMALL_STATE(2172)] = 67776, + [SMALL_STATE(2173)] = 67816, + [SMALL_STATE(2174)] = 67854, + [SMALL_STATE(2175)] = 67894, + [SMALL_STATE(2176)] = 67918, + [SMALL_STATE(2177)] = 67948, + [SMALL_STATE(2178)] = 67989, + [SMALL_STATE(2179)] = 68012, + [SMALL_STATE(2180)] = 68035, + [SMALL_STATE(2181)] = 68058, + [SMALL_STATE(2182)] = 68081, + [SMALL_STATE(2183)] = 68104, + [SMALL_STATE(2184)] = 68127, + [SMALL_STATE(2185)] = 68150, + [SMALL_STATE(2186)] = 68173, + [SMALL_STATE(2187)] = 68206, + [SMALL_STATE(2188)] = 68229, + [SMALL_STATE(2189)] = 68252, + [SMALL_STATE(2190)] = 68275, + [SMALL_STATE(2191)] = 68298, + [SMALL_STATE(2192)] = 68321, + [SMALL_STATE(2193)] = 68344, + [SMALL_STATE(2194)] = 68367, + [SMALL_STATE(2195)] = 68390, + [SMALL_STATE(2196)] = 68413, + [SMALL_STATE(2197)] = 68444, + [SMALL_STATE(2198)] = 68479, + [SMALL_STATE(2199)] = 68502, + [SMALL_STATE(2200)] = 68537, + [SMALL_STATE(2201)] = 68578, + [SMALL_STATE(2202)] = 68601, + [SMALL_STATE(2203)] = 68638, + [SMALL_STATE(2204)] = 68675, + [SMALL_STATE(2205)] = 68698, + [SMALL_STATE(2206)] = 68721, + [SMALL_STATE(2207)] = 68752, + [SMALL_STATE(2208)] = 68775, + [SMALL_STATE(2209)] = 68806, + [SMALL_STATE(2210)] = 68847, + [SMALL_STATE(2211)] = 68870, + [SMALL_STATE(2212)] = 68893, + [SMALL_STATE(2213)] = 68930, + [SMALL_STATE(2214)] = 68953, + [SMALL_STATE(2215)] = 68976, + [SMALL_STATE(2216)] = 69013, + [SMALL_STATE(2217)] = 69036, + [SMALL_STATE(2218)] = 69059, + [SMALL_STATE(2219)] = 69082, + [SMALL_STATE(2220)] = 69105, + [SMALL_STATE(2221)] = 69128, + [SMALL_STATE(2222)] = 69151, + [SMALL_STATE(2223)] = 69182, + [SMALL_STATE(2224)] = 69213, + [SMALL_STATE(2225)] = 69248, + [SMALL_STATE(2226)] = 69271, + [SMALL_STATE(2227)] = 69306, + [SMALL_STATE(2228)] = 69329, + [SMALL_STATE(2229)] = 69360, + [SMALL_STATE(2230)] = 69383, + [SMALL_STATE(2231)] = 69406, + [SMALL_STATE(2232)] = 69447, + [SMALL_STATE(2233)] = 69471, + [SMALL_STATE(2234)] = 69503, + [SMALL_STATE(2235)] = 69533, + [SMALL_STATE(2236)] = 69561, + [SMALL_STATE(2237)] = 69589, + [SMALL_STATE(2238)] = 69613, + [SMALL_STATE(2239)] = 69651, + [SMALL_STATE(2240)] = 69681, + [SMALL_STATE(2241)] = 69709, + [SMALL_STATE(2242)] = 69741, + [SMALL_STATE(2243)] = 69769, + [SMALL_STATE(2244)] = 69797, + [SMALL_STATE(2245)] = 69835, + [SMALL_STATE(2246)] = 69873, + [SMALL_STATE(2247)] = 69911, + [SMALL_STATE(2248)] = 69937, + [SMALL_STATE(2249)] = 69965, + [SMALL_STATE(2250)] = 70003, + [SMALL_STATE(2251)] = 70041, + [SMALL_STATE(2252)] = 70065, + [SMALL_STATE(2253)] = 70097, + [SMALL_STATE(2254)] = 70135, + [SMALL_STATE(2255)] = 70173, + [SMALL_STATE(2256)] = 70203, + [SMALL_STATE(2257)] = 70241, + [SMALL_STATE(2258)] = 70279, + [SMALL_STATE(2259)] = 70309, + [SMALL_STATE(2260)] = 70343, + [SMALL_STATE(2261)] = 70371, + [SMALL_STATE(2262)] = 70409, + [SMALL_STATE(2263)] = 70433, + [SMALL_STATE(2264)] = 70459, + [SMALL_STATE(2265)] = 70485, + [SMALL_STATE(2266)] = 70519, + [SMALL_STATE(2267)] = 70557, + [SMALL_STATE(2268)] = 70589, + [SMALL_STATE(2269)] = 70625, + [SMALL_STATE(2270)] = 70663, + [SMALL_STATE(2271)] = 70695, + [SMALL_STATE(2272)] = 70727, + [SMALL_STATE(2273)] = 70765, + [SMALL_STATE(2274)] = 70803, + [SMALL_STATE(2275)] = 70835, + [SMALL_STATE(2276)] = 70867, + [SMALL_STATE(2277)] = 70905, + [SMALL_STATE(2278)] = 70937, + [SMALL_STATE(2279)] = 70969, + [SMALL_STATE(2280)] = 71001, + [SMALL_STATE(2281)] = 71033, + [SMALL_STATE(2282)] = 71061, + [SMALL_STATE(2283)] = 71093, + [SMALL_STATE(2284)] = 71117, + [SMALL_STATE(2285)] = 71142, + [SMALL_STATE(2286)] = 71177, + [SMALL_STATE(2287)] = 71212, + [SMALL_STATE(2288)] = 71247, + [SMALL_STATE(2289)] = 71282, + [SMALL_STATE(2290)] = 71317, + [SMALL_STATE(2291)] = 71352, + [SMALL_STATE(2292)] = 71387, + [SMALL_STATE(2293)] = 71422, + [SMALL_STATE(2294)] = 71457, + [SMALL_STATE(2295)] = 71492, + [SMALL_STATE(2296)] = 71527, + [SMALL_STATE(2297)] = 71552, + [SMALL_STATE(2298)] = 71587, + [SMALL_STATE(2299)] = 71620, + [SMALL_STATE(2300)] = 71655, + [SMALL_STATE(2301)] = 71690, + [SMALL_STATE(2302)] = 71711, + [SMALL_STATE(2303)] = 71732, + [SMALL_STATE(2304)] = 71753, + [SMALL_STATE(2305)] = 71780, + [SMALL_STATE(2306)] = 71815, + [SMALL_STATE(2307)] = 71850, + [SMALL_STATE(2308)] = 71883, + [SMALL_STATE(2309)] = 71918, + [SMALL_STATE(2310)] = 71953, + [SMALL_STATE(2311)] = 71978, + [SMALL_STATE(2312)] = 72011, + [SMALL_STATE(2313)] = 72046, + [SMALL_STATE(2314)] = 72081, + [SMALL_STATE(2315)] = 72116, + [SMALL_STATE(2316)] = 72151, + [SMALL_STATE(2317)] = 72186, + [SMALL_STATE(2318)] = 72215, + [SMALL_STATE(2319)] = 72250, + [SMALL_STATE(2320)] = 72285, + [SMALL_STATE(2321)] = 72320, + [SMALL_STATE(2322)] = 72355, + [SMALL_STATE(2323)] = 72388, + [SMALL_STATE(2324)] = 72423, + [SMALL_STATE(2325)] = 72458, + [SMALL_STATE(2326)] = 72493, + [SMALL_STATE(2327)] = 72528, + [SMALL_STATE(2328)] = 72549, + [SMALL_STATE(2329)] = 72584, + [SMALL_STATE(2330)] = 72619, + [SMALL_STATE(2331)] = 72654, + [SMALL_STATE(2332)] = 72687, + [SMALL_STATE(2333)] = 72722, + [SMALL_STATE(2334)] = 72757, + [SMALL_STATE(2335)] = 72792, + [SMALL_STATE(2336)] = 72827, + [SMALL_STATE(2337)] = 72862, + [SMALL_STATE(2338)] = 72897, + [SMALL_STATE(2339)] = 72929, + [SMALL_STATE(2340)] = 72957, + [SMALL_STATE(2341)] = 72987, + [SMALL_STATE(2342)] = 73019, + [SMALL_STATE(2343)] = 73051, + [SMALL_STATE(2344)] = 73077, + [SMALL_STATE(2345)] = 73109, + [SMALL_STATE(2346)] = 73141, + [SMALL_STATE(2347)] = 73173, + [SMALL_STATE(2348)] = 73205, + [SMALL_STATE(2349)] = 73235, + [SMALL_STATE(2350)] = 73267, + [SMALL_STATE(2351)] = 73297, + [SMALL_STATE(2352)] = 73329, + [SMALL_STATE(2353)] = 73361, + [SMALL_STATE(2354)] = 73393, + [SMALL_STATE(2355)] = 73425, + [SMALL_STATE(2356)] = 73457, + [SMALL_STATE(2357)] = 73485, + [SMALL_STATE(2358)] = 73513, + [SMALL_STATE(2359)] = 73539, + [SMALL_STATE(2360)] = 73565, + [SMALL_STATE(2361)] = 73597, + [SMALL_STATE(2362)] = 73629, + [SMALL_STATE(2363)] = 73661, + [SMALL_STATE(2364)] = 73693, + [SMALL_STATE(2365)] = 73725, + [SMALL_STATE(2366)] = 73757, + [SMALL_STATE(2367)] = 73789, + [SMALL_STATE(2368)] = 73819, + [SMALL_STATE(2369)] = 73847, + [SMALL_STATE(2370)] = 73877, + [SMALL_STATE(2371)] = 73909, + [SMALL_STATE(2372)] = 73939, + [SMALL_STATE(2373)] = 73961, + [SMALL_STATE(2374)] = 73983, + [SMALL_STATE(2375)] = 74015, + [SMALL_STATE(2376)] = 74045, + [SMALL_STATE(2377)] = 74077, + [SMALL_STATE(2378)] = 74103, + [SMALL_STATE(2379)] = 74135, + [SMALL_STATE(2380)] = 74167, + [SMALL_STATE(2381)] = 74199, + [SMALL_STATE(2382)] = 74229, + [SMALL_STATE(2383)] = 74261, + [SMALL_STATE(2384)] = 74291, + [SMALL_STATE(2385)] = 74313, + [SMALL_STATE(2386)] = 74345, + [SMALL_STATE(2387)] = 74367, + [SMALL_STATE(2388)] = 74399, + [SMALL_STATE(2389)] = 74431, + [SMALL_STATE(2390)] = 74459, + [SMALL_STATE(2391)] = 74491, + [SMALL_STATE(2392)] = 74513, + [SMALL_STATE(2393)] = 74543, + [SMALL_STATE(2394)] = 74575, + [SMALL_STATE(2395)] = 74607, + [SMALL_STATE(2396)] = 74639, + [SMALL_STATE(2397)] = 74671, + [SMALL_STATE(2398)] = 74693, + [SMALL_STATE(2399)] = 74725, + [SMALL_STATE(2400)] = 74757, + [SMALL_STATE(2401)] = 74789, + [SMALL_STATE(2402)] = 74821, + [SMALL_STATE(2403)] = 74842, + [SMALL_STATE(2404)] = 74865, + [SMALL_STATE(2405)] = 74886, + [SMALL_STATE(2406)] = 74907, + [SMALL_STATE(2407)] = 74936, + [SMALL_STATE(2408)] = 74957, + [SMALL_STATE(2409)] = 74978, + [SMALL_STATE(2410)] = 74999, + [SMALL_STATE(2411)] = 75028, + [SMALL_STATE(2412)] = 75057, + [SMALL_STATE(2413)] = 75086, + [SMALL_STATE(2414)] = 75115, + [SMALL_STATE(2415)] = 75144, + [SMALL_STATE(2416)] = 75173, + [SMALL_STATE(2417)] = 75202, + [SMALL_STATE(2418)] = 75231, + [SMALL_STATE(2419)] = 75260, + [SMALL_STATE(2420)] = 75289, + [SMALL_STATE(2421)] = 75318, + [SMALL_STATE(2422)] = 75347, + [SMALL_STATE(2423)] = 75374, + [SMALL_STATE(2424)] = 75403, + [SMALL_STATE(2425)] = 75432, + [SMALL_STATE(2426)] = 75455, + [SMALL_STATE(2427)] = 75478, + [SMALL_STATE(2428)] = 75507, + [SMALL_STATE(2429)] = 75536, + [SMALL_STATE(2430)] = 75565, + [SMALL_STATE(2431)] = 75594, + [SMALL_STATE(2432)] = 75623, + [SMALL_STATE(2433)] = 75652, + [SMALL_STATE(2434)] = 75681, + [SMALL_STATE(2435)] = 75710, + [SMALL_STATE(2436)] = 75733, + [SMALL_STATE(2437)] = 75762, + [SMALL_STATE(2438)] = 75791, + [SMALL_STATE(2439)] = 75820, + [SMALL_STATE(2440)] = 75843, + [SMALL_STATE(2441)] = 75872, + [SMALL_STATE(2442)] = 75901, + [SMALL_STATE(2443)] = 75930, + [SMALL_STATE(2444)] = 75959, + [SMALL_STATE(2445)] = 75988, + [SMALL_STATE(2446)] = 76017, + [SMALL_STATE(2447)] = 76046, + [SMALL_STATE(2448)] = 76075, + [SMALL_STATE(2449)] = 76102, + [SMALL_STATE(2450)] = 76125, + [SMALL_STATE(2451)] = 76152, + [SMALL_STATE(2452)] = 76177, + [SMALL_STATE(2453)] = 76202, + [SMALL_STATE(2454)] = 76227, + [SMALL_STATE(2455)] = 76248, + [SMALL_STATE(2456)] = 76277, + [SMALL_STATE(2457)] = 76298, + [SMALL_STATE(2458)] = 76327, + [SMALL_STATE(2459)] = 76356, + [SMALL_STATE(2460)] = 76381, + [SMALL_STATE(2461)] = 76410, + [SMALL_STATE(2462)] = 76429, + [SMALL_STATE(2463)] = 76458, + [SMALL_STATE(2464)] = 76487, + [SMALL_STATE(2465)] = 76508, + [SMALL_STATE(2466)] = 76529, + [SMALL_STATE(2467)] = 76550, + [SMALL_STATE(2468)] = 76573, + [SMALL_STATE(2469)] = 76594, + [SMALL_STATE(2470)] = 76623, + [SMALL_STATE(2471)] = 76652, + [SMALL_STATE(2472)] = 76675, + [SMALL_STATE(2473)] = 76702, + [SMALL_STATE(2474)] = 76731, + [SMALL_STATE(2475)] = 76760, + [SMALL_STATE(2476)] = 76781, + [SMALL_STATE(2477)] = 76810, + [SMALL_STATE(2478)] = 76833, + [SMALL_STATE(2479)] = 76862, + [SMALL_STATE(2480)] = 76891, + [SMALL_STATE(2481)] = 76920, + [SMALL_STATE(2482)] = 76939, + [SMALL_STATE(2483)] = 76962, + [SMALL_STATE(2484)] = 76985, + [SMALL_STATE(2485)] = 77014, + [SMALL_STATE(2486)] = 77043, + [SMALL_STATE(2487)] = 77066, + [SMALL_STATE(2488)] = 77095, + [SMALL_STATE(2489)] = 77124, + [SMALL_STATE(2490)] = 77153, + [SMALL_STATE(2491)] = 77174, + [SMALL_STATE(2492)] = 77203, + [SMALL_STATE(2493)] = 77226, + [SMALL_STATE(2494)] = 77255, + [SMALL_STATE(2495)] = 77276, + [SMALL_STATE(2496)] = 77305, + [SMALL_STATE(2497)] = 77334, + [SMALL_STATE(2498)] = 77357, + [SMALL_STATE(2499)] = 77380, + [SMALL_STATE(2500)] = 77409, + [SMALL_STATE(2501)] = 77436, + [SMALL_STATE(2502)] = 77457, + [SMALL_STATE(2503)] = 77486, + [SMALL_STATE(2504)] = 77513, + [SMALL_STATE(2505)] = 77542, + [SMALL_STATE(2506)] = 77571, + [SMALL_STATE(2507)] = 77594, + [SMALL_STATE(2508)] = 77623, + [SMALL_STATE(2509)] = 77649, + [SMALL_STATE(2510)] = 77667, + [SMALL_STATE(2511)] = 77693, + [SMALL_STATE(2512)] = 77719, + [SMALL_STATE(2513)] = 77745, + [SMALL_STATE(2514)] = 77769, + [SMALL_STATE(2515)] = 77795, + [SMALL_STATE(2516)] = 77819, + [SMALL_STATE(2517)] = 77845, + [SMALL_STATE(2518)] = 77871, + [SMALL_STATE(2519)] = 77889, + [SMALL_STATE(2520)] = 77915, + [SMALL_STATE(2521)] = 77941, + [SMALL_STATE(2522)] = 77967, + [SMALL_STATE(2523)] = 77985, + [SMALL_STATE(2524)] = 78011, + [SMALL_STATE(2525)] = 78037, + [SMALL_STATE(2526)] = 78063, + [SMALL_STATE(2527)] = 78087, + [SMALL_STATE(2528)] = 78109, + [SMALL_STATE(2529)] = 78131, + [SMALL_STATE(2530)] = 78149, + [SMALL_STATE(2531)] = 78175, + [SMALL_STATE(2532)] = 78199, + [SMALL_STATE(2533)] = 78225, + [SMALL_STATE(2534)] = 78243, + [SMALL_STATE(2535)] = 78269, + [SMALL_STATE(2536)] = 78287, + [SMALL_STATE(2537)] = 78311, + [SMALL_STATE(2538)] = 78337, + [SMALL_STATE(2539)] = 78363, + [SMALL_STATE(2540)] = 78387, + [SMALL_STATE(2541)] = 78407, + [SMALL_STATE(2542)] = 78425, + [SMALL_STATE(2543)] = 78451, + [SMALL_STATE(2544)] = 78473, + [SMALL_STATE(2545)] = 78493, + [SMALL_STATE(2546)] = 78519, + [SMALL_STATE(2547)] = 78545, + [SMALL_STATE(2548)] = 78563, + [SMALL_STATE(2549)] = 78589, + [SMALL_STATE(2550)] = 78615, + [SMALL_STATE(2551)] = 78633, + [SMALL_STATE(2552)] = 78651, + [SMALL_STATE(2553)] = 78677, + [SMALL_STATE(2554)] = 78695, + [SMALL_STATE(2555)] = 78719, + [SMALL_STATE(2556)] = 78737, + [SMALL_STATE(2557)] = 78763, + [SMALL_STATE(2558)] = 78789, + [SMALL_STATE(2559)] = 78815, + [SMALL_STATE(2560)] = 78833, + [SMALL_STATE(2561)] = 78857, + [SMALL_STATE(2562)] = 78875, + [SMALL_STATE(2563)] = 78897, + [SMALL_STATE(2564)] = 78915, + [SMALL_STATE(2565)] = 78935, + [SMALL_STATE(2566)] = 78961, + [SMALL_STATE(2567)] = 78985, + [SMALL_STATE(2568)] = 79011, + [SMALL_STATE(2569)] = 79035, + [SMALL_STATE(2570)] = 79061, + [SMALL_STATE(2571)] = 79087, + [SMALL_STATE(2572)] = 79113, + [SMALL_STATE(2573)] = 79135, + [SMALL_STATE(2574)] = 79161, + [SMALL_STATE(2575)] = 79179, + [SMALL_STATE(2576)] = 79197, + [SMALL_STATE(2577)] = 79223, + [SMALL_STATE(2578)] = 79247, + [SMALL_STATE(2579)] = 79273, + [SMALL_STATE(2580)] = 79297, + [SMALL_STATE(2581)] = 79323, + [SMALL_STATE(2582)] = 79345, + [SMALL_STATE(2583)] = 79371, + [SMALL_STATE(2584)] = 79397, + [SMALL_STATE(2585)] = 79415, + [SMALL_STATE(2586)] = 79433, + [SMALL_STATE(2587)] = 79459, + [SMALL_STATE(2588)] = 79477, + [SMALL_STATE(2589)] = 79499, + [SMALL_STATE(2590)] = 79525, + [SMALL_STATE(2591)] = 79551, + [SMALL_STATE(2592)] = 79575, + [SMALL_STATE(2593)] = 79593, + [SMALL_STATE(2594)] = 79619, + [SMALL_STATE(2595)] = 79637, + [SMALL_STATE(2596)] = 79663, + [SMALL_STATE(2597)] = 79689, + [SMALL_STATE(2598)] = 79713, + [SMALL_STATE(2599)] = 79731, + [SMALL_STATE(2600)] = 79757, + [SMALL_STATE(2601)] = 79783, + [SMALL_STATE(2602)] = 79801, + [SMALL_STATE(2603)] = 79827, + [SMALL_STATE(2604)] = 79853, + [SMALL_STATE(2605)] = 79879, + [SMALL_STATE(2606)] = 79899, + [SMALL_STATE(2607)] = 79925, + [SMALL_STATE(2608)] = 79947, + [SMALL_STATE(2609)] = 79973, + [SMALL_STATE(2610)] = 79999, + [SMALL_STATE(2611)] = 80025, + [SMALL_STATE(2612)] = 80049, + [SMALL_STATE(2613)] = 80073, + [SMALL_STATE(2614)] = 80091, + [SMALL_STATE(2615)] = 80109, + [SMALL_STATE(2616)] = 80135, + [SMALL_STATE(2617)] = 80158, + [SMALL_STATE(2618)] = 80181, + [SMALL_STATE(2619)] = 80204, + [SMALL_STATE(2620)] = 80227, + [SMALL_STATE(2621)] = 80250, + [SMALL_STATE(2622)] = 80273, + [SMALL_STATE(2623)] = 80296, + [SMALL_STATE(2624)] = 80319, + [SMALL_STATE(2625)] = 80342, + [SMALL_STATE(2626)] = 80365, + [SMALL_STATE(2627)] = 80388, + [SMALL_STATE(2628)] = 80411, + [SMALL_STATE(2629)] = 80432, + [SMALL_STATE(2630)] = 80455, + [SMALL_STATE(2631)] = 80478, + [SMALL_STATE(2632)] = 80501, + [SMALL_STATE(2633)] = 80524, + [SMALL_STATE(2634)] = 80547, + [SMALL_STATE(2635)] = 80570, + [SMALL_STATE(2636)] = 80589, + [SMALL_STATE(2637)] = 80612, + [SMALL_STATE(2638)] = 80635, + [SMALL_STATE(2639)] = 80658, + [SMALL_STATE(2640)] = 80681, + [SMALL_STATE(2641)] = 80704, + [SMALL_STATE(2642)] = 80727, + [SMALL_STATE(2643)] = 80748, + [SMALL_STATE(2644)] = 80771, + [SMALL_STATE(2645)] = 80794, + [SMALL_STATE(2646)] = 80817, + [SMALL_STATE(2647)] = 80840, + [SMALL_STATE(2648)] = 80861, + [SMALL_STATE(2649)] = 80884, + [SMALL_STATE(2650)] = 80903, + [SMALL_STATE(2651)] = 80924, + [SMALL_STATE(2652)] = 80947, + [SMALL_STATE(2653)] = 80970, + [SMALL_STATE(2654)] = 80993, + [SMALL_STATE(2655)] = 81016, + [SMALL_STATE(2656)] = 81039, + [SMALL_STATE(2657)] = 81058, + [SMALL_STATE(2658)] = 81081, + [SMALL_STATE(2659)] = 81102, + [SMALL_STATE(2660)] = 81125, + [SMALL_STATE(2661)] = 81144, + [SMALL_STATE(2662)] = 81167, + [SMALL_STATE(2663)] = 81190, + [SMALL_STATE(2664)] = 81213, + [SMALL_STATE(2665)] = 81236, + [SMALL_STATE(2666)] = 81259, + [SMALL_STATE(2667)] = 81282, + [SMALL_STATE(2668)] = 81305, + [SMALL_STATE(2669)] = 81328, + [SMALL_STATE(2670)] = 81349, + [SMALL_STATE(2671)] = 81372, + [SMALL_STATE(2672)] = 81395, + [SMALL_STATE(2673)] = 81418, + [SMALL_STATE(2674)] = 81439, + [SMALL_STATE(2675)] = 81458, + [SMALL_STATE(2676)] = 81481, + [SMALL_STATE(2677)] = 81502, + [SMALL_STATE(2678)] = 81525, + [SMALL_STATE(2679)] = 81548, + [SMALL_STATE(2680)] = 81571, + [SMALL_STATE(2681)] = 81594, + [SMALL_STATE(2682)] = 81617, + [SMALL_STATE(2683)] = 81640, + [SMALL_STATE(2684)] = 81663, + [SMALL_STATE(2685)] = 81686, + [SMALL_STATE(2686)] = 81709, + [SMALL_STATE(2687)] = 81732, + [SMALL_STATE(2688)] = 81755, + [SMALL_STATE(2689)] = 81778, + [SMALL_STATE(2690)] = 81801, + [SMALL_STATE(2691)] = 81820, + [SMALL_STATE(2692)] = 81843, + [SMALL_STATE(2693)] = 81866, + [SMALL_STATE(2694)] = 81889, + [SMALL_STATE(2695)] = 81912, + [SMALL_STATE(2696)] = 81935, + [SMALL_STATE(2697)] = 81958, + [SMALL_STATE(2698)] = 81981, + [SMALL_STATE(2699)] = 82004, + [SMALL_STATE(2700)] = 82027, + [SMALL_STATE(2701)] = 82048, + [SMALL_STATE(2702)] = 82069, + [SMALL_STATE(2703)] = 82092, + [SMALL_STATE(2704)] = 82115, + [SMALL_STATE(2705)] = 82136, + [SMALL_STATE(2706)] = 82159, + [SMALL_STATE(2707)] = 82182, + [SMALL_STATE(2708)] = 82205, + [SMALL_STATE(2709)] = 82228, + [SMALL_STATE(2710)] = 82251, + [SMALL_STATE(2711)] = 82274, + [SMALL_STATE(2712)] = 82297, + [SMALL_STATE(2713)] = 82316, + [SMALL_STATE(2714)] = 82339, + [SMALL_STATE(2715)] = 82360, + [SMALL_STATE(2716)] = 82383, + [SMALL_STATE(2717)] = 82406, + [SMALL_STATE(2718)] = 82429, + [SMALL_STATE(2719)] = 82452, + [SMALL_STATE(2720)] = 82475, + [SMALL_STATE(2721)] = 82496, + [SMALL_STATE(2722)] = 82519, + [SMALL_STATE(2723)] = 82542, + [SMALL_STATE(2724)] = 82565, + [SMALL_STATE(2725)] = 82586, + [SMALL_STATE(2726)] = 82607, + [SMALL_STATE(2727)] = 82630, + [SMALL_STATE(2728)] = 82649, + [SMALL_STATE(2729)] = 82670, + [SMALL_STATE(2730)] = 82693, + [SMALL_STATE(2731)] = 82716, + [SMALL_STATE(2732)] = 82739, + [SMALL_STATE(2733)] = 82762, + [SMALL_STATE(2734)] = 82781, + [SMALL_STATE(2735)] = 82800, + [SMALL_STATE(2736)] = 82823, + [SMALL_STATE(2737)] = 82846, + [SMALL_STATE(2738)] = 82869, + [SMALL_STATE(2739)] = 82886, + [SMALL_STATE(2740)] = 82909, + [SMALL_STATE(2741)] = 82932, + [SMALL_STATE(2742)] = 82955, + [SMALL_STATE(2743)] = 82974, + [SMALL_STATE(2744)] = 82997, + [SMALL_STATE(2745)] = 83020, + [SMALL_STATE(2746)] = 83039, + [SMALL_STATE(2747)] = 83056, + [SMALL_STATE(2748)] = 83079, + [SMALL_STATE(2749)] = 83096, + [SMALL_STATE(2750)] = 83119, + [SMALL_STATE(2751)] = 83142, + [SMALL_STATE(2752)] = 83161, + [SMALL_STATE(2753)] = 83180, + [SMALL_STATE(2754)] = 83203, + [SMALL_STATE(2755)] = 83226, + [SMALL_STATE(2756)] = 83245, + [SMALL_STATE(2757)] = 83266, + [SMALL_STATE(2758)] = 83285, + [SMALL_STATE(2759)] = 83308, + [SMALL_STATE(2760)] = 83327, + [SMALL_STATE(2761)] = 83350, + [SMALL_STATE(2762)] = 83373, + [SMALL_STATE(2763)] = 83396, + [SMALL_STATE(2764)] = 83419, + [SMALL_STATE(2765)] = 83440, + [SMALL_STATE(2766)] = 83461, + [SMALL_STATE(2767)] = 83484, + [SMALL_STATE(2768)] = 83507, + [SMALL_STATE(2769)] = 83530, + [SMALL_STATE(2770)] = 83549, + [SMALL_STATE(2771)] = 83572, + [SMALL_STATE(2772)] = 83595, + [SMALL_STATE(2773)] = 83616, + [SMALL_STATE(2774)] = 83635, + [SMALL_STATE(2775)] = 83658, + [SMALL_STATE(2776)] = 83681, + [SMALL_STATE(2777)] = 83704, + [SMALL_STATE(2778)] = 83727, + [SMALL_STATE(2779)] = 83750, + [SMALL_STATE(2780)] = 83773, + [SMALL_STATE(2781)] = 83796, + [SMALL_STATE(2782)] = 83819, + [SMALL_STATE(2783)] = 83842, + [SMALL_STATE(2784)] = 83861, + [SMALL_STATE(2785)] = 83884, + [SMALL_STATE(2786)] = 83903, + [SMALL_STATE(2787)] = 83926, + [SMALL_STATE(2788)] = 83949, + [SMALL_STATE(2789)] = 83972, + [SMALL_STATE(2790)] = 83995, + [SMALL_STATE(2791)] = 84014, + [SMALL_STATE(2792)] = 84037, + [SMALL_STATE(2793)] = 84060, + [SMALL_STATE(2794)] = 84083, + [SMALL_STATE(2795)] = 84102, + [SMALL_STATE(2796)] = 84125, + [SMALL_STATE(2797)] = 84148, + [SMALL_STATE(2798)] = 84171, + [SMALL_STATE(2799)] = 84194, + [SMALL_STATE(2800)] = 84217, + [SMALL_STATE(2801)] = 84240, + [SMALL_STATE(2802)] = 84263, + [SMALL_STATE(2803)] = 84286, + [SMALL_STATE(2804)] = 84309, + [SMALL_STATE(2805)] = 84332, + [SMALL_STATE(2806)] = 84355, + [SMALL_STATE(2807)] = 84376, + [SMALL_STATE(2808)] = 84399, + [SMALL_STATE(2809)] = 84418, + [SMALL_STATE(2810)] = 84441, + [SMALL_STATE(2811)] = 84464, + [SMALL_STATE(2812)] = 84483, + [SMALL_STATE(2813)] = 84502, + [SMALL_STATE(2814)] = 84521, + [SMALL_STATE(2815)] = 84544, + [SMALL_STATE(2816)] = 84567, + [SMALL_STATE(2817)] = 84586, + [SMALL_STATE(2818)] = 84607, + [SMALL_STATE(2819)] = 84630, + [SMALL_STATE(2820)] = 84653, + [SMALL_STATE(2821)] = 84676, + [SMALL_STATE(2822)] = 84699, + [SMALL_STATE(2823)] = 84722, + [SMALL_STATE(2824)] = 84745, + [SMALL_STATE(2825)] = 84768, + [SMALL_STATE(2826)] = 84791, + [SMALL_STATE(2827)] = 84810, + [SMALL_STATE(2828)] = 84829, + [SMALL_STATE(2829)] = 84852, + [SMALL_STATE(2830)] = 84873, + [SMALL_STATE(2831)] = 84892, + [SMALL_STATE(2832)] = 84915, + [SMALL_STATE(2833)] = 84938, + [SMALL_STATE(2834)] = 84961, + [SMALL_STATE(2835)] = 84984, + [SMALL_STATE(2836)] = 85007, + [SMALL_STATE(2837)] = 85026, + [SMALL_STATE(2838)] = 85049, + [SMALL_STATE(2839)] = 85072, + [SMALL_STATE(2840)] = 85095, + [SMALL_STATE(2841)] = 85118, + [SMALL_STATE(2842)] = 85141, + [SMALL_STATE(2843)] = 85164, + [SMALL_STATE(2844)] = 85187, + [SMALL_STATE(2845)] = 85210, + [SMALL_STATE(2846)] = 85233, + [SMALL_STATE(2847)] = 85256, + [SMALL_STATE(2848)] = 85279, + [SMALL_STATE(2849)] = 85302, + [SMALL_STATE(2850)] = 85325, + [SMALL_STATE(2851)] = 85348, + [SMALL_STATE(2852)] = 85371, + [SMALL_STATE(2853)] = 85394, + [SMALL_STATE(2854)] = 85417, + [SMALL_STATE(2855)] = 85440, + [SMALL_STATE(2856)] = 85463, + [SMALL_STATE(2857)] = 85486, + [SMALL_STATE(2858)] = 85509, + [SMALL_STATE(2859)] = 85532, + [SMALL_STATE(2860)] = 85555, + [SMALL_STATE(2861)] = 85572, + [SMALL_STATE(2862)] = 85595, + [SMALL_STATE(2863)] = 85618, + [SMALL_STATE(2864)] = 85641, + [SMALL_STATE(2865)] = 85664, + [SMALL_STATE(2866)] = 85685, + [SMALL_STATE(2867)] = 85708, + [SMALL_STATE(2868)] = 85731, + [SMALL_STATE(2869)] = 85754, + [SMALL_STATE(2870)] = 85777, + [SMALL_STATE(2871)] = 85800, + [SMALL_STATE(2872)] = 85821, + [SMALL_STATE(2873)] = 85844, + [SMALL_STATE(2874)] = 85867, + [SMALL_STATE(2875)] = 85890, + [SMALL_STATE(2876)] = 85907, + [SMALL_STATE(2877)] = 85928, + [SMALL_STATE(2878)] = 85951, + [SMALL_STATE(2879)] = 85971, + [SMALL_STATE(2880)] = 85991, + [SMALL_STATE(2881)] = 86011, + [SMALL_STATE(2882)] = 86029, + [SMALL_STATE(2883)] = 86049, + [SMALL_STATE(2884)] = 86065, + [SMALL_STATE(2885)] = 86085, + [SMALL_STATE(2886)] = 86105, + [SMALL_STATE(2887)] = 86125, + [SMALL_STATE(2888)] = 86145, + [SMALL_STATE(2889)] = 86165, + [SMALL_STATE(2890)] = 86185, + [SMALL_STATE(2891)] = 86205, + [SMALL_STATE(2892)] = 86225, + [SMALL_STATE(2893)] = 86241, + [SMALL_STATE(2894)] = 86261, + [SMALL_STATE(2895)] = 86281, + [SMALL_STATE(2896)] = 86301, + [SMALL_STATE(2897)] = 86321, + [SMALL_STATE(2898)] = 86341, + [SMALL_STATE(2899)] = 86361, + [SMALL_STATE(2900)] = 86381, + [SMALL_STATE(2901)] = 86401, + [SMALL_STATE(2902)] = 86421, + [SMALL_STATE(2903)] = 86441, + [SMALL_STATE(2904)] = 86461, + [SMALL_STATE(2905)] = 86481, + [SMALL_STATE(2906)] = 86501, + [SMALL_STATE(2907)] = 86519, + [SMALL_STATE(2908)] = 86539, + [SMALL_STATE(2909)] = 86559, + [SMALL_STATE(2910)] = 86579, + [SMALL_STATE(2911)] = 86597, + [SMALL_STATE(2912)] = 86617, + [SMALL_STATE(2913)] = 86637, + [SMALL_STATE(2914)] = 86657, + [SMALL_STATE(2915)] = 86677, + [SMALL_STATE(2916)] = 86697, + [SMALL_STATE(2917)] = 86717, + [SMALL_STATE(2918)] = 86737, + [SMALL_STATE(2919)] = 86757, + [SMALL_STATE(2920)] = 86777, + [SMALL_STATE(2921)] = 86797, + [SMALL_STATE(2922)] = 86817, + [SMALL_STATE(2923)] = 86837, + [SMALL_STATE(2924)] = 86857, + [SMALL_STATE(2925)] = 86877, + [SMALL_STATE(2926)] = 86897, + [SMALL_STATE(2927)] = 86917, + [SMALL_STATE(2928)] = 86933, + [SMALL_STATE(2929)] = 86953, + [SMALL_STATE(2930)] = 86973, + [SMALL_STATE(2931)] = 86989, + [SMALL_STATE(2932)] = 87009, + [SMALL_STATE(2933)] = 87027, + [SMALL_STATE(2934)] = 87043, + [SMALL_STATE(2935)] = 87063, + [SMALL_STATE(2936)] = 87079, + [SMALL_STATE(2937)] = 87099, + [SMALL_STATE(2938)] = 87119, + [SMALL_STATE(2939)] = 87135, + [SMALL_STATE(2940)] = 87151, + [SMALL_STATE(2941)] = 87171, + [SMALL_STATE(2942)] = 87191, + [SMALL_STATE(2943)] = 87211, + [SMALL_STATE(2944)] = 87231, + [SMALL_STATE(2945)] = 87251, + [SMALL_STATE(2946)] = 87271, + [SMALL_STATE(2947)] = 87291, + [SMALL_STATE(2948)] = 87311, + [SMALL_STATE(2949)] = 87331, + [SMALL_STATE(2950)] = 87351, + [SMALL_STATE(2951)] = 87367, + [SMALL_STATE(2952)] = 87387, + [SMALL_STATE(2953)] = 87405, + [SMALL_STATE(2954)] = 87425, + [SMALL_STATE(2955)] = 87445, + [SMALL_STATE(2956)] = 87465, + [SMALL_STATE(2957)] = 87483, + [SMALL_STATE(2958)] = 87503, + [SMALL_STATE(2959)] = 87523, + [SMALL_STATE(2960)] = 87543, + [SMALL_STATE(2961)] = 87563, + [SMALL_STATE(2962)] = 87581, + [SMALL_STATE(2963)] = 87601, + [SMALL_STATE(2964)] = 87621, + [SMALL_STATE(2965)] = 87641, + [SMALL_STATE(2966)] = 87661, + [SMALL_STATE(2967)] = 87681, + [SMALL_STATE(2968)] = 87701, + [SMALL_STATE(2969)] = 87721, + [SMALL_STATE(2970)] = 87741, + [SMALL_STATE(2971)] = 87759, + [SMALL_STATE(2972)] = 87779, + [SMALL_STATE(2973)] = 87795, + [SMALL_STATE(2974)] = 87811, + [SMALL_STATE(2975)] = 87831, + [SMALL_STATE(2976)] = 87851, + [SMALL_STATE(2977)] = 87871, + [SMALL_STATE(2978)] = 87891, + [SMALL_STATE(2979)] = 87911, + [SMALL_STATE(2980)] = 87931, + [SMALL_STATE(2981)] = 87951, + [SMALL_STATE(2982)] = 87971, + [SMALL_STATE(2983)] = 87987, + [SMALL_STATE(2984)] = 88007, + [SMALL_STATE(2985)] = 88027, + [SMALL_STATE(2986)] = 88047, + [SMALL_STATE(2987)] = 88067, + [SMALL_STATE(2988)] = 88083, + [SMALL_STATE(2989)] = 88103, + [SMALL_STATE(2990)] = 88121, + [SMALL_STATE(2991)] = 88139, + [SMALL_STATE(2992)] = 88155, + [SMALL_STATE(2993)] = 88175, + [SMALL_STATE(2994)] = 88195, + [SMALL_STATE(2995)] = 88215, + [SMALL_STATE(2996)] = 88231, + [SMALL_STATE(2997)] = 88247, + [SMALL_STATE(2998)] = 88263, + [SMALL_STATE(2999)] = 88279, + [SMALL_STATE(3000)] = 88295, + [SMALL_STATE(3001)] = 88311, + [SMALL_STATE(3002)] = 88331, + [SMALL_STATE(3003)] = 88351, + [SMALL_STATE(3004)] = 88371, + [SMALL_STATE(3005)] = 88391, + [SMALL_STATE(3006)] = 88411, + [SMALL_STATE(3007)] = 88427, + [SMALL_STATE(3008)] = 88443, + [SMALL_STATE(3009)] = 88463, + [SMALL_STATE(3010)] = 88483, + [SMALL_STATE(3011)] = 88499, + [SMALL_STATE(3012)] = 88519, + [SMALL_STATE(3013)] = 88539, + [SMALL_STATE(3014)] = 88555, + [SMALL_STATE(3015)] = 88571, + [SMALL_STATE(3016)] = 88587, + [SMALL_STATE(3017)] = 88603, + [SMALL_STATE(3018)] = 88619, + [SMALL_STATE(3019)] = 88639, + [SMALL_STATE(3020)] = 88655, + [SMALL_STATE(3021)] = 88675, + [SMALL_STATE(3022)] = 88695, + [SMALL_STATE(3023)] = 88715, + [SMALL_STATE(3024)] = 88735, + [SMALL_STATE(3025)] = 88755, + [SMALL_STATE(3026)] = 88775, + [SMALL_STATE(3027)] = 88793, + [SMALL_STATE(3028)] = 88813, + [SMALL_STATE(3029)] = 88829, + [SMALL_STATE(3030)] = 88849, + [SMALL_STATE(3031)] = 88869, + [SMALL_STATE(3032)] = 88889, + [SMALL_STATE(3033)] = 88909, + [SMALL_STATE(3034)] = 88927, + [SMALL_STATE(3035)] = 88947, + [SMALL_STATE(3036)] = 88967, + [SMALL_STATE(3037)] = 88987, + [SMALL_STATE(3038)] = 89005, + [SMALL_STATE(3039)] = 89025, + [SMALL_STATE(3040)] = 89041, + [SMALL_STATE(3041)] = 89061, + [SMALL_STATE(3042)] = 89081, + [SMALL_STATE(3043)] = 89099, + [SMALL_STATE(3044)] = 89119, + [SMALL_STATE(3045)] = 89139, + [SMALL_STATE(3046)] = 89159, + [SMALL_STATE(3047)] = 89177, + [SMALL_STATE(3048)] = 89197, + [SMALL_STATE(3049)] = 89217, + [SMALL_STATE(3050)] = 89237, + [SMALL_STATE(3051)] = 89257, + [SMALL_STATE(3052)] = 89277, + [SMALL_STATE(3053)] = 89297, + [SMALL_STATE(3054)] = 89315, + [SMALL_STATE(3055)] = 89331, + [SMALL_STATE(3056)] = 89351, + [SMALL_STATE(3057)] = 89369, + [SMALL_STATE(3058)] = 89389, + [SMALL_STATE(3059)] = 89405, + [SMALL_STATE(3060)] = 89425, + [SMALL_STATE(3061)] = 89445, + [SMALL_STATE(3062)] = 89465, + [SMALL_STATE(3063)] = 89485, + [SMALL_STATE(3064)] = 89503, + [SMALL_STATE(3065)] = 89523, + [SMALL_STATE(3066)] = 89541, + [SMALL_STATE(3067)] = 89561, + [SMALL_STATE(3068)] = 89577, + [SMALL_STATE(3069)] = 89593, + [SMALL_STATE(3070)] = 89613, + [SMALL_STATE(3071)] = 89631, + [SMALL_STATE(3072)] = 89649, + [SMALL_STATE(3073)] = 89665, + [SMALL_STATE(3074)] = 89683, + [SMALL_STATE(3075)] = 89701, + [SMALL_STATE(3076)] = 89721, + [SMALL_STATE(3077)] = 89741, + [SMALL_STATE(3078)] = 89761, + [SMALL_STATE(3079)] = 89779, + [SMALL_STATE(3080)] = 89799, + [SMALL_STATE(3081)] = 89819, + [SMALL_STATE(3082)] = 89835, + [SMALL_STATE(3083)] = 89853, + [SMALL_STATE(3084)] = 89873, + [SMALL_STATE(3085)] = 89893, + [SMALL_STATE(3086)] = 89913, + [SMALL_STATE(3087)] = 89933, + [SMALL_STATE(3088)] = 89951, + [SMALL_STATE(3089)] = 89967, + [SMALL_STATE(3090)] = 89987, + [SMALL_STATE(3091)] = 90003, + [SMALL_STATE(3092)] = 90021, + [SMALL_STATE(3093)] = 90039, + [SMALL_STATE(3094)] = 90059, + [SMALL_STATE(3095)] = 90079, + [SMALL_STATE(3096)] = 90099, + [SMALL_STATE(3097)] = 90115, + [SMALL_STATE(3098)] = 90133, + [SMALL_STATE(3099)] = 90151, + [SMALL_STATE(3100)] = 90171, + [SMALL_STATE(3101)] = 90191, + [SMALL_STATE(3102)] = 90209, + [SMALL_STATE(3103)] = 90225, + [SMALL_STATE(3104)] = 90243, + [SMALL_STATE(3105)] = 90263, + [SMALL_STATE(3106)] = 90283, + [SMALL_STATE(3107)] = 90303, + [SMALL_STATE(3108)] = 90323, + [SMALL_STATE(3109)] = 90343, + [SMALL_STATE(3110)] = 90363, + [SMALL_STATE(3111)] = 90383, + [SMALL_STATE(3112)] = 90403, + [SMALL_STATE(3113)] = 90423, + [SMALL_STATE(3114)] = 90443, + [SMALL_STATE(3115)] = 90463, + [SMALL_STATE(3116)] = 90483, + [SMALL_STATE(3117)] = 90501, + [SMALL_STATE(3118)] = 90521, + [SMALL_STATE(3119)] = 90537, + [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)] = 90693, + [SMALL_STATE(3128)] = 90709, + [SMALL_STATE(3129)] = 90725, + [SMALL_STATE(3130)] = 90741, + [SMALL_STATE(3131)] = 90757, + [SMALL_STATE(3132)] = 90773, + [SMALL_STATE(3133)] = 90789, + [SMALL_STATE(3134)] = 90805, + [SMALL_STATE(3135)] = 90821, + [SMALL_STATE(3136)] = 90839, + [SMALL_STATE(3137)] = 90859, + [SMALL_STATE(3138)] = 90875, + [SMALL_STATE(3139)] = 90893, + [SMALL_STATE(3140)] = 90909, + [SMALL_STATE(3141)] = 90927, + [SMALL_STATE(3142)] = 90945, + [SMALL_STATE(3143)] = 90961, + [SMALL_STATE(3144)] = 90981, + [SMALL_STATE(3145)] = 90999, + [SMALL_STATE(3146)] = 91019, + [SMALL_STATE(3147)] = 91039, + [SMALL_STATE(3148)] = 91059, + [SMALL_STATE(3149)] = 91079, + [SMALL_STATE(3150)] = 91099, + [SMALL_STATE(3151)] = 91119, + [SMALL_STATE(3152)] = 91139, + [SMALL_STATE(3153)] = 91159, + [SMALL_STATE(3154)] = 91177, + [SMALL_STATE(3155)] = 91197, + [SMALL_STATE(3156)] = 91217, + [SMALL_STATE(3157)] = 91237, + [SMALL_STATE(3158)] = 91257, + [SMALL_STATE(3159)] = 91277, + [SMALL_STATE(3160)] = 91297, + [SMALL_STATE(3161)] = 91317, + [SMALL_STATE(3162)] = 91337, + [SMALL_STATE(3163)] = 91357, + [SMALL_STATE(3164)] = 91377, + [SMALL_STATE(3165)] = 91397, + [SMALL_STATE(3166)] = 91417, + [SMALL_STATE(3167)] = 91437, + [SMALL_STATE(3168)] = 91457, + [SMALL_STATE(3169)] = 91477, + [SMALL_STATE(3170)] = 91497, + [SMALL_STATE(3171)] = 91517, + [SMALL_STATE(3172)] = 91537, + [SMALL_STATE(3173)] = 91557, + [SMALL_STATE(3174)] = 91573, + [SMALL_STATE(3175)] = 91593, + [SMALL_STATE(3176)] = 91611, + [SMALL_STATE(3177)] = 91631, + [SMALL_STATE(3178)] = 91649, + [SMALL_STATE(3179)] = 91669, + [SMALL_STATE(3180)] = 91689, + [SMALL_STATE(3181)] = 91709, + [SMALL_STATE(3182)] = 91729, + [SMALL_STATE(3183)] = 91749, + [SMALL_STATE(3184)] = 91765, + [SMALL_STATE(3185)] = 91785, + [SMALL_STATE(3186)] = 91805, + [SMALL_STATE(3187)] = 91825, + [SMALL_STATE(3188)] = 91845, + [SMALL_STATE(3189)] = 91865, + [SMALL_STATE(3190)] = 91882, + [SMALL_STATE(3191)] = 91899, + [SMALL_STATE(3192)] = 91916, + [SMALL_STATE(3193)] = 91933, + [SMALL_STATE(3194)] = 91950, + [SMALL_STATE(3195)] = 91965, + [SMALL_STATE(3196)] = 91982, + [SMALL_STATE(3197)] = 91999, + [SMALL_STATE(3198)] = 92016, + [SMALL_STATE(3199)] = 92033, + [SMALL_STATE(3200)] = 92048, + [SMALL_STATE(3201)] = 92065, + [SMALL_STATE(3202)] = 92082, + [SMALL_STATE(3203)] = 92099, + [SMALL_STATE(3204)] = 92116, + [SMALL_STATE(3205)] = 92133, + [SMALL_STATE(3206)] = 92150, + [SMALL_STATE(3207)] = 92167, + [SMALL_STATE(3208)] = 92184, + [SMALL_STATE(3209)] = 92201, + [SMALL_STATE(3210)] = 92218, + [SMALL_STATE(3211)] = 92235, + [SMALL_STATE(3212)] = 92252, + [SMALL_STATE(3213)] = 92267, + [SMALL_STATE(3214)] = 92282, + [SMALL_STATE(3215)] = 92299, + [SMALL_STATE(3216)] = 92316, + [SMALL_STATE(3217)] = 92331, + [SMALL_STATE(3218)] = 92346, + [SMALL_STATE(3219)] = 92363, + [SMALL_STATE(3220)] = 92380, + [SMALL_STATE(3221)] = 92395, + [SMALL_STATE(3222)] = 92412, + [SMALL_STATE(3223)] = 92429, + [SMALL_STATE(3224)] = 92446, + [SMALL_STATE(3225)] = 92463, + [SMALL_STATE(3226)] = 92478, + [SMALL_STATE(3227)] = 92495, + [SMALL_STATE(3228)] = 92512, + [SMALL_STATE(3229)] = 92529, + [SMALL_STATE(3230)] = 92546, + [SMALL_STATE(3231)] = 92563, + [SMALL_STATE(3232)] = 92580, + [SMALL_STATE(3233)] = 92597, + [SMALL_STATE(3234)] = 92614, + [SMALL_STATE(3235)] = 92631, + [SMALL_STATE(3236)] = 92648, + [SMALL_STATE(3237)] = 92665, + [SMALL_STATE(3238)] = 92680, + [SMALL_STATE(3239)] = 92697, + [SMALL_STATE(3240)] = 92714, + [SMALL_STATE(3241)] = 92731, + [SMALL_STATE(3242)] = 92748, + [SMALL_STATE(3243)] = 92765, + [SMALL_STATE(3244)] = 92780, + [SMALL_STATE(3245)] = 92797, + [SMALL_STATE(3246)] = 92814, + [SMALL_STATE(3247)] = 92831, + [SMALL_STATE(3248)] = 92848, + [SMALL_STATE(3249)] = 92865, + [SMALL_STATE(3250)] = 92880, + [SMALL_STATE(3251)] = 92897, + [SMALL_STATE(3252)] = 92914, + [SMALL_STATE(3253)] = 92929, + [SMALL_STATE(3254)] = 92946, + [SMALL_STATE(3255)] = 92963, + [SMALL_STATE(3256)] = 92980, + [SMALL_STATE(3257)] = 92997, + [SMALL_STATE(3258)] = 93014, + [SMALL_STATE(3259)] = 93031, + [SMALL_STATE(3260)] = 93048, + [SMALL_STATE(3261)] = 93065, + [SMALL_STATE(3262)] = 93082, + [SMALL_STATE(3263)] = 93099, + [SMALL_STATE(3264)] = 93116, + [SMALL_STATE(3265)] = 93131, + [SMALL_STATE(3266)] = 93146, + [SMALL_STATE(3267)] = 93161, + [SMALL_STATE(3268)] = 93178, + [SMALL_STATE(3269)] = 93195, + [SMALL_STATE(3270)] = 93212, + [SMALL_STATE(3271)] = 93227, + [SMALL_STATE(3272)] = 93244, + [SMALL_STATE(3273)] = 93261, + [SMALL_STATE(3274)] = 93276, + [SMALL_STATE(3275)] = 93293, + [SMALL_STATE(3276)] = 93310, + [SMALL_STATE(3277)] = 93327, + [SMALL_STATE(3278)] = 93344, + [SMALL_STATE(3279)] = 93361, + [SMALL_STATE(3280)] = 93376, + [SMALL_STATE(3281)] = 93393, + [SMALL_STATE(3282)] = 93410, + [SMALL_STATE(3283)] = 93427, + [SMALL_STATE(3284)] = 93444, + [SMALL_STATE(3285)] = 93461, + [SMALL_STATE(3286)] = 93478, + [SMALL_STATE(3287)] = 93495, + [SMALL_STATE(3288)] = 93512, + [SMALL_STATE(3289)] = 93529, + [SMALL_STATE(3290)] = 93546, + [SMALL_STATE(3291)] = 93563, + [SMALL_STATE(3292)] = 93580, + [SMALL_STATE(3293)] = 93597, + [SMALL_STATE(3294)] = 93614, + [SMALL_STATE(3295)] = 93631, + [SMALL_STATE(3296)] = 93648, + [SMALL_STATE(3297)] = 93663, + [SMALL_STATE(3298)] = 93680, + [SMALL_STATE(3299)] = 93697, + [SMALL_STATE(3300)] = 93712, + [SMALL_STATE(3301)] = 93729, + [SMALL_STATE(3302)] = 93746, + [SMALL_STATE(3303)] = 93763, + [SMALL_STATE(3304)] = 93780, + [SMALL_STATE(3305)] = 93797, + [SMALL_STATE(3306)] = 93814, + [SMALL_STATE(3307)] = 93831, + [SMALL_STATE(3308)] = 93848, + [SMALL_STATE(3309)] = 93865, + [SMALL_STATE(3310)] = 93882, + [SMALL_STATE(3311)] = 93899, + [SMALL_STATE(3312)] = 93916, + [SMALL_STATE(3313)] = 93933, + [SMALL_STATE(3314)] = 93950, + [SMALL_STATE(3315)] = 93967, + [SMALL_STATE(3316)] = 93984, + [SMALL_STATE(3317)] = 94001, + [SMALL_STATE(3318)] = 94018, + [SMALL_STATE(3319)] = 94035, + [SMALL_STATE(3320)] = 94052, + [SMALL_STATE(3321)] = 94069, + [SMALL_STATE(3322)] = 94086, + [SMALL_STATE(3323)] = 94103, + [SMALL_STATE(3324)] = 94120, + [SMALL_STATE(3325)] = 94135, + [SMALL_STATE(3326)] = 94152, + [SMALL_STATE(3327)] = 94169, + [SMALL_STATE(3328)] = 94186, + [SMALL_STATE(3329)] = 94203, + [SMALL_STATE(3330)] = 94220, + [SMALL_STATE(3331)] = 94237, + [SMALL_STATE(3332)] = 94254, + [SMALL_STATE(3333)] = 94271, + [SMALL_STATE(3334)] = 94288, + [SMALL_STATE(3335)] = 94305, + [SMALL_STATE(3336)] = 94320, + [SMALL_STATE(3337)] = 94337, + [SMALL_STATE(3338)] = 94354, + [SMALL_STATE(3339)] = 94371, + [SMALL_STATE(3340)] = 94388, + [SMALL_STATE(3341)] = 94405, + [SMALL_STATE(3342)] = 94422, + [SMALL_STATE(3343)] = 94437, + [SMALL_STATE(3344)] = 94454, + [SMALL_STATE(3345)] = 94471, + [SMALL_STATE(3346)] = 94486, + [SMALL_STATE(3347)] = 94503, + [SMALL_STATE(3348)] = 94518, + [SMALL_STATE(3349)] = 94535, + [SMALL_STATE(3350)] = 94550, + [SMALL_STATE(3351)] = 94565, + [SMALL_STATE(3352)] = 94580, + [SMALL_STATE(3353)] = 94597, + [SMALL_STATE(3354)] = 94614, + [SMALL_STATE(3355)] = 94631, + [SMALL_STATE(3356)] = 94648, + [SMALL_STATE(3357)] = 94665, + [SMALL_STATE(3358)] = 94680, + [SMALL_STATE(3359)] = 94697, + [SMALL_STATE(3360)] = 94714, + [SMALL_STATE(3361)] = 94731, + [SMALL_STATE(3362)] = 94748, + [SMALL_STATE(3363)] = 94765, + [SMALL_STATE(3364)] = 94782, + [SMALL_STATE(3365)] = 94799, + [SMALL_STATE(3366)] = 94814, + [SMALL_STATE(3367)] = 94831, + [SMALL_STATE(3368)] = 94848, + [SMALL_STATE(3369)] = 94865, + [SMALL_STATE(3370)] = 94880, + [SMALL_STATE(3371)] = 94897, + [SMALL_STATE(3372)] = 94914, + [SMALL_STATE(3373)] = 94931, + [SMALL_STATE(3374)] = 94946, + [SMALL_STATE(3375)] = 94963, + [SMALL_STATE(3376)] = 94980, + [SMALL_STATE(3377)] = 94995, + [SMALL_STATE(3378)] = 95012, + [SMALL_STATE(3379)] = 95027, + [SMALL_STATE(3380)] = 95044, + [SMALL_STATE(3381)] = 95059, + [SMALL_STATE(3382)] = 95076, + [SMALL_STATE(3383)] = 95093, + [SMALL_STATE(3384)] = 95108, + [SMALL_STATE(3385)] = 95123, + [SMALL_STATE(3386)] = 95140, + [SMALL_STATE(3387)] = 95157, + [SMALL_STATE(3388)] = 95174, + [SMALL_STATE(3389)] = 95191, + [SMALL_STATE(3390)] = 95208, + [SMALL_STATE(3391)] = 95225, + [SMALL_STATE(3392)] = 95242, + [SMALL_STATE(3393)] = 95257, + [SMALL_STATE(3394)] = 95274, + [SMALL_STATE(3395)] = 95289, + [SMALL_STATE(3396)] = 95306, + [SMALL_STATE(3397)] = 95323, + [SMALL_STATE(3398)] = 95340, + [SMALL_STATE(3399)] = 95355, + [SMALL_STATE(3400)] = 95370, + [SMALL_STATE(3401)] = 95387, + [SMALL_STATE(3402)] = 95404, + [SMALL_STATE(3403)] = 95419, + [SMALL_STATE(3404)] = 95436, + [SMALL_STATE(3405)] = 95453, + [SMALL_STATE(3406)] = 95470, + [SMALL_STATE(3407)] = 95487, + [SMALL_STATE(3408)] = 95502, + [SMALL_STATE(3409)] = 95517, + [SMALL_STATE(3410)] = 95534, + [SMALL_STATE(3411)] = 95551, + [SMALL_STATE(3412)] = 95568, + [SMALL_STATE(3413)] = 95585, + [SMALL_STATE(3414)] = 95602, + [SMALL_STATE(3415)] = 95619, + [SMALL_STATE(3416)] = 95636, + [SMALL_STATE(3417)] = 95653, + [SMALL_STATE(3418)] = 95668, + [SMALL_STATE(3419)] = 95685, + [SMALL_STATE(3420)] = 95702, + [SMALL_STATE(3421)] = 95719, + [SMALL_STATE(3422)] = 95736, + [SMALL_STATE(3423)] = 95753, + [SMALL_STATE(3424)] = 95770, + [SMALL_STATE(3425)] = 95787, + [SMALL_STATE(3426)] = 95802, + [SMALL_STATE(3427)] = 95817, + [SMALL_STATE(3428)] = 95834, + [SMALL_STATE(3429)] = 95851, + [SMALL_STATE(3430)] = 95868, + [SMALL_STATE(3431)] = 95885, + [SMALL_STATE(3432)] = 95902, + [SMALL_STATE(3433)] = 95919, + [SMALL_STATE(3434)] = 95936, + [SMALL_STATE(3435)] = 95953, + [SMALL_STATE(3436)] = 95970, + [SMALL_STATE(3437)] = 95987, + [SMALL_STATE(3438)] = 96004, + [SMALL_STATE(3439)] = 96021, + [SMALL_STATE(3440)] = 96038, + [SMALL_STATE(3441)] = 96055, + [SMALL_STATE(3442)] = 96072, + [SMALL_STATE(3443)] = 96089, + [SMALL_STATE(3444)] = 96106, + [SMALL_STATE(3445)] = 96121, + [SMALL_STATE(3446)] = 96138, + [SMALL_STATE(3447)] = 96153, + [SMALL_STATE(3448)] = 96170, + [SMALL_STATE(3449)] = 96187, + [SMALL_STATE(3450)] = 96204, + [SMALL_STATE(3451)] = 96221, + [SMALL_STATE(3452)] = 96236, + [SMALL_STATE(3453)] = 96253, + [SMALL_STATE(3454)] = 96270, + [SMALL_STATE(3455)] = 96287, + [SMALL_STATE(3456)] = 96304, + [SMALL_STATE(3457)] = 96321, + [SMALL_STATE(3458)] = 96336, + [SMALL_STATE(3459)] = 96353, + [SMALL_STATE(3460)] = 96368, + [SMALL_STATE(3461)] = 96385, + [SMALL_STATE(3462)] = 96402, + [SMALL_STATE(3463)] = 96417, + [SMALL_STATE(3464)] = 96434, + [SMALL_STATE(3465)] = 96451, + [SMALL_STATE(3466)] = 96466, + [SMALL_STATE(3467)] = 96483, + [SMALL_STATE(3468)] = 96500, + [SMALL_STATE(3469)] = 96515, + [SMALL_STATE(3470)] = 96532, + [SMALL_STATE(3471)] = 96547, + [SMALL_STATE(3472)] = 96564, + [SMALL_STATE(3473)] = 96581, + [SMALL_STATE(3474)] = 96598, + [SMALL_STATE(3475)] = 96615, + [SMALL_STATE(3476)] = 96632, + [SMALL_STATE(3477)] = 96649, + [SMALL_STATE(3478)] = 96666, + [SMALL_STATE(3479)] = 96683, + [SMALL_STATE(3480)] = 96700, + [SMALL_STATE(3481)] = 96717, + [SMALL_STATE(3482)] = 96734, + [SMALL_STATE(3483)] = 96749, + [SMALL_STATE(3484)] = 96766, + [SMALL_STATE(3485)] = 96783, + [SMALL_STATE(3486)] = 96800, + [SMALL_STATE(3487)] = 96817, + [SMALL_STATE(3488)] = 96834, + [SMALL_STATE(3489)] = 96851, + [SMALL_STATE(3490)] = 96868, + [SMALL_STATE(3491)] = 96885, + [SMALL_STATE(3492)] = 96902, + [SMALL_STATE(3493)] = 96919, + [SMALL_STATE(3494)] = 96936, + [SMALL_STATE(3495)] = 96953, + [SMALL_STATE(3496)] = 96970, + [SMALL_STATE(3497)] = 96985, + [SMALL_STATE(3498)] = 96999, + [SMALL_STATE(3499)] = 97013, + [SMALL_STATE(3500)] = 97027, + [SMALL_STATE(3501)] = 97041, + [SMALL_STATE(3502)] = 97055, + [SMALL_STATE(3503)] = 97069, + [SMALL_STATE(3504)] = 97083, + [SMALL_STATE(3505)] = 97097, + [SMALL_STATE(3506)] = 97111, + [SMALL_STATE(3507)] = 97125, + [SMALL_STATE(3508)] = 97139, + [SMALL_STATE(3509)] = 97153, + [SMALL_STATE(3510)] = 97167, + [SMALL_STATE(3511)] = 97181, + [SMALL_STATE(3512)] = 97195, + [SMALL_STATE(3513)] = 97209, + [SMALL_STATE(3514)] = 97223, + [SMALL_STATE(3515)] = 97237, + [SMALL_STATE(3516)] = 97251, + [SMALL_STATE(3517)] = 97265, + [SMALL_STATE(3518)] = 97279, + [SMALL_STATE(3519)] = 97293, + [SMALL_STATE(3520)] = 97307, + [SMALL_STATE(3521)] = 97321, + [SMALL_STATE(3522)] = 97335, + [SMALL_STATE(3523)] = 97349, + [SMALL_STATE(3524)] = 97363, + [SMALL_STATE(3525)] = 97377, + [SMALL_STATE(3526)] = 97391, + [SMALL_STATE(3527)] = 97405, + [SMALL_STATE(3528)] = 97419, + [SMALL_STATE(3529)] = 97433, + [SMALL_STATE(3530)] = 97447, + [SMALL_STATE(3531)] = 97461, + [SMALL_STATE(3532)] = 97475, + [SMALL_STATE(3533)] = 97489, + [SMALL_STATE(3534)] = 97503, + [SMALL_STATE(3535)] = 97517, + [SMALL_STATE(3536)] = 97531, + [SMALL_STATE(3537)] = 97545, + [SMALL_STATE(3538)] = 97559, + [SMALL_STATE(3539)] = 97573, + [SMALL_STATE(3540)] = 97587, + [SMALL_STATE(3541)] = 97601, + [SMALL_STATE(3542)] = 97615, + [SMALL_STATE(3543)] = 97629, + [SMALL_STATE(3544)] = 97643, + [SMALL_STATE(3545)] = 97657, + [SMALL_STATE(3546)] = 97671, + [SMALL_STATE(3547)] = 97685, + [SMALL_STATE(3548)] = 97699, + [SMALL_STATE(3549)] = 97713, + [SMALL_STATE(3550)] = 97727, + [SMALL_STATE(3551)] = 97741, + [SMALL_STATE(3552)] = 97755, + [SMALL_STATE(3553)] = 97769, + [SMALL_STATE(3554)] = 97783, + [SMALL_STATE(3555)] = 97797, + [SMALL_STATE(3556)] = 97811, + [SMALL_STATE(3557)] = 97825, + [SMALL_STATE(3558)] = 97839, + [SMALL_STATE(3559)] = 97853, + [SMALL_STATE(3560)] = 97867, + [SMALL_STATE(3561)] = 97881, + [SMALL_STATE(3562)] = 97895, + [SMALL_STATE(3563)] = 97909, + [SMALL_STATE(3564)] = 97923, + [SMALL_STATE(3565)] = 97937, + [SMALL_STATE(3566)] = 97951, + [SMALL_STATE(3567)] = 97965, + [SMALL_STATE(3568)] = 97979, + [SMALL_STATE(3569)] = 97993, + [SMALL_STATE(3570)] = 98007, + [SMALL_STATE(3571)] = 98021, + [SMALL_STATE(3572)] = 98035, + [SMALL_STATE(3573)] = 98049, + [SMALL_STATE(3574)] = 98063, + [SMALL_STATE(3575)] = 98077, + [SMALL_STATE(3576)] = 98091, + [SMALL_STATE(3577)] = 98105, + [SMALL_STATE(3578)] = 98119, + [SMALL_STATE(3579)] = 98133, + [SMALL_STATE(3580)] = 98147, + [SMALL_STATE(3581)] = 98161, + [SMALL_STATE(3582)] = 98175, + [SMALL_STATE(3583)] = 98189, + [SMALL_STATE(3584)] = 98203, + [SMALL_STATE(3585)] = 98217, + [SMALL_STATE(3586)] = 98231, + [SMALL_STATE(3587)] = 98245, + [SMALL_STATE(3588)] = 98259, + [SMALL_STATE(3589)] = 98273, + [SMALL_STATE(3590)] = 98287, + [SMALL_STATE(3591)] = 98301, + [SMALL_STATE(3592)] = 98315, + [SMALL_STATE(3593)] = 98329, + [SMALL_STATE(3594)] = 98343, + [SMALL_STATE(3595)] = 98357, + [SMALL_STATE(3596)] = 98371, + [SMALL_STATE(3597)] = 98385, + [SMALL_STATE(3598)] = 98399, + [SMALL_STATE(3599)] = 98413, + [SMALL_STATE(3600)] = 98427, + [SMALL_STATE(3601)] = 98441, + [SMALL_STATE(3602)] = 98455, + [SMALL_STATE(3603)] = 98469, + [SMALL_STATE(3604)] = 98483, + [SMALL_STATE(3605)] = 98497, + [SMALL_STATE(3606)] = 98511, + [SMALL_STATE(3607)] = 98525, + [SMALL_STATE(3608)] = 98539, + [SMALL_STATE(3609)] = 98553, + [SMALL_STATE(3610)] = 98567, + [SMALL_STATE(3611)] = 98581, + [SMALL_STATE(3612)] = 98595, + [SMALL_STATE(3613)] = 98609, + [SMALL_STATE(3614)] = 98623, + [SMALL_STATE(3615)] = 98637, + [SMALL_STATE(3616)] = 98651, + [SMALL_STATE(3617)] = 98665, + [SMALL_STATE(3618)] = 98679, + [SMALL_STATE(3619)] = 98693, + [SMALL_STATE(3620)] = 98707, + [SMALL_STATE(3621)] = 98721, + [SMALL_STATE(3622)] = 98735, + [SMALL_STATE(3623)] = 98749, + [SMALL_STATE(3624)] = 98763, + [SMALL_STATE(3625)] = 98777, + [SMALL_STATE(3626)] = 98791, + [SMALL_STATE(3627)] = 98805, + [SMALL_STATE(3628)] = 98819, + [SMALL_STATE(3629)] = 98833, + [SMALL_STATE(3630)] = 98847, + [SMALL_STATE(3631)] = 98861, + [SMALL_STATE(3632)] = 98875, + [SMALL_STATE(3633)] = 98889, + [SMALL_STATE(3634)] = 98903, + [SMALL_STATE(3635)] = 98917, + [SMALL_STATE(3636)] = 98931, + [SMALL_STATE(3637)] = 98945, + [SMALL_STATE(3638)] = 98959, + [SMALL_STATE(3639)] = 98973, + [SMALL_STATE(3640)] = 98987, + [SMALL_STATE(3641)] = 99001, + [SMALL_STATE(3642)] = 99015, + [SMALL_STATE(3643)] = 99029, + [SMALL_STATE(3644)] = 99043, + [SMALL_STATE(3645)] = 99057, + [SMALL_STATE(3646)] = 99071, + [SMALL_STATE(3647)] = 99085, + [SMALL_STATE(3648)] = 99099, + [SMALL_STATE(3649)] = 99113, + [SMALL_STATE(3650)] = 99127, + [SMALL_STATE(3651)] = 99141, + [SMALL_STATE(3652)] = 99155, + [SMALL_STATE(3653)] = 99169, + [SMALL_STATE(3654)] = 99183, + [SMALL_STATE(3655)] = 99197, + [SMALL_STATE(3656)] = 99211, + [SMALL_STATE(3657)] = 99225, + [SMALL_STATE(3658)] = 99239, + [SMALL_STATE(3659)] = 99253, + [SMALL_STATE(3660)] = 99267, + [SMALL_STATE(3661)] = 99281, + [SMALL_STATE(3662)] = 99295, + [SMALL_STATE(3663)] = 99309, + [SMALL_STATE(3664)] = 99323, + [SMALL_STATE(3665)] = 99337, + [SMALL_STATE(3666)] = 99351, + [SMALL_STATE(3667)] = 99365, + [SMALL_STATE(3668)] = 99379, + [SMALL_STATE(3669)] = 99393, + [SMALL_STATE(3670)] = 99407, + [SMALL_STATE(3671)] = 99421, + [SMALL_STATE(3672)] = 99435, + [SMALL_STATE(3673)] = 99449, + [SMALL_STATE(3674)] = 99463, + [SMALL_STATE(3675)] = 99477, + [SMALL_STATE(3676)] = 99491, + [SMALL_STATE(3677)] = 99505, + [SMALL_STATE(3678)] = 99519, + [SMALL_STATE(3679)] = 99533, + [SMALL_STATE(3680)] = 99547, + [SMALL_STATE(3681)] = 99561, + [SMALL_STATE(3682)] = 99575, + [SMALL_STATE(3683)] = 99589, + [SMALL_STATE(3684)] = 99603, + [SMALL_STATE(3685)] = 99617, + [SMALL_STATE(3686)] = 99631, + [SMALL_STATE(3687)] = 99645, + [SMALL_STATE(3688)] = 99659, + [SMALL_STATE(3689)] = 99673, + [SMALL_STATE(3690)] = 99687, + [SMALL_STATE(3691)] = 99701, + [SMALL_STATE(3692)] = 99715, + [SMALL_STATE(3693)] = 99729, + [SMALL_STATE(3694)] = 99743, + [SMALL_STATE(3695)] = 99757, + [SMALL_STATE(3696)] = 99771, + [SMALL_STATE(3697)] = 99785, + [SMALL_STATE(3698)] = 99799, + [SMALL_STATE(3699)] = 99813, + [SMALL_STATE(3700)] = 99827, + [SMALL_STATE(3701)] = 99841, + [SMALL_STATE(3702)] = 99855, + [SMALL_STATE(3703)] = 99869, + [SMALL_STATE(3704)] = 99883, + [SMALL_STATE(3705)] = 99897, + [SMALL_STATE(3706)] = 99911, + [SMALL_STATE(3707)] = 99925, + [SMALL_STATE(3708)] = 99939, + [SMALL_STATE(3709)] = 99953, + [SMALL_STATE(3710)] = 99967, + [SMALL_STATE(3711)] = 99981, + [SMALL_STATE(3712)] = 99995, + [SMALL_STATE(3713)] = 100009, + [SMALL_STATE(3714)] = 100023, + [SMALL_STATE(3715)] = 100037, + [SMALL_STATE(3716)] = 100051, + [SMALL_STATE(3717)] = 100065, + [SMALL_STATE(3718)] = 100079, + [SMALL_STATE(3719)] = 100093, + [SMALL_STATE(3720)] = 100107, + [SMALL_STATE(3721)] = 100121, + [SMALL_STATE(3722)] = 100135, + [SMALL_STATE(3723)] = 100149, + [SMALL_STATE(3724)] = 100163, + [SMALL_STATE(3725)] = 100177, + [SMALL_STATE(3726)] = 100191, + [SMALL_STATE(3727)] = 100205, + [SMALL_STATE(3728)] = 100219, + [SMALL_STATE(3729)] = 100233, + [SMALL_STATE(3730)] = 100247, + [SMALL_STATE(3731)] = 100261, + [SMALL_STATE(3732)] = 100275, + [SMALL_STATE(3733)] = 100289, + [SMALL_STATE(3734)] = 100303, + [SMALL_STATE(3735)] = 100317, + [SMALL_STATE(3736)] = 100331, + [SMALL_STATE(3737)] = 100345, + [SMALL_STATE(3738)] = 100359, + [SMALL_STATE(3739)] = 100373, + [SMALL_STATE(3740)] = 100387, + [SMALL_STATE(3741)] = 100401, + [SMALL_STATE(3742)] = 100415, + [SMALL_STATE(3743)] = 100429, + [SMALL_STATE(3744)] = 100443, + [SMALL_STATE(3745)] = 100457, + [SMALL_STATE(3746)] = 100471, + [SMALL_STATE(3747)] = 100485, + [SMALL_STATE(3748)] = 100499, + [SMALL_STATE(3749)] = 100513, + [SMALL_STATE(3750)] = 100527, + [SMALL_STATE(3751)] = 100541, + [SMALL_STATE(3752)] = 100555, + [SMALL_STATE(3753)] = 100569, + [SMALL_STATE(3754)] = 100583, + [SMALL_STATE(3755)] = 100597, + [SMALL_STATE(3756)] = 100611, + [SMALL_STATE(3757)] = 100625, + [SMALL_STATE(3758)] = 100639, + [SMALL_STATE(3759)] = 100653, + [SMALL_STATE(3760)] = 100667, + [SMALL_STATE(3761)] = 100681, + [SMALL_STATE(3762)] = 100695, + [SMALL_STATE(3763)] = 100709, + [SMALL_STATE(3764)] = 100723, + [SMALL_STATE(3765)] = 100737, + [SMALL_STATE(3766)] = 100751, + [SMALL_STATE(3767)] = 100765, + [SMALL_STATE(3768)] = 100779, + [SMALL_STATE(3769)] = 100793, + [SMALL_STATE(3770)] = 100807, + [SMALL_STATE(3771)] = 100821, + [SMALL_STATE(3772)] = 100835, + [SMALL_STATE(3773)] = 100849, + [SMALL_STATE(3774)] = 100863, + [SMALL_STATE(3775)] = 100877, + [SMALL_STATE(3776)] = 100891, + [SMALL_STATE(3777)] = 100905, + [SMALL_STATE(3778)] = 100919, + [SMALL_STATE(3779)] = 100933, + [SMALL_STATE(3780)] = 100947, + [SMALL_STATE(3781)] = 100961, + [SMALL_STATE(3782)] = 100975, + [SMALL_STATE(3783)] = 100989, + [SMALL_STATE(3784)] = 101003, + [SMALL_STATE(3785)] = 101017, + [SMALL_STATE(3786)] = 101031, + [SMALL_STATE(3787)] = 101045, + [SMALL_STATE(3788)] = 101059, + [SMALL_STATE(3789)] = 101073, + [SMALL_STATE(3790)] = 101087, + [SMALL_STATE(3791)] = 101101, + [SMALL_STATE(3792)] = 101115, + [SMALL_STATE(3793)] = 101129, + [SMALL_STATE(3794)] = 101143, + [SMALL_STATE(3795)] = 101157, + [SMALL_STATE(3796)] = 101171, + [SMALL_STATE(3797)] = 101185, + [SMALL_STATE(3798)] = 101199, + [SMALL_STATE(3799)] = 101213, + [SMALL_STATE(3800)] = 101227, + [SMALL_STATE(3801)] = 101241, + [SMALL_STATE(3802)] = 101255, + [SMALL_STATE(3803)] = 101269, + [SMALL_STATE(3804)] = 101283, + [SMALL_STATE(3805)] = 101297, + [SMALL_STATE(3806)] = 101311, + [SMALL_STATE(3807)] = 101325, + [SMALL_STATE(3808)] = 101339, + [SMALL_STATE(3809)] = 101353, + [SMALL_STATE(3810)] = 101367, + [SMALL_STATE(3811)] = 101381, + [SMALL_STATE(3812)] = 101395, + [SMALL_STATE(3813)] = 101409, + [SMALL_STATE(3814)] = 101423, + [SMALL_STATE(3815)] = 101437, + [SMALL_STATE(3816)] = 101451, + [SMALL_STATE(3817)] = 101455, + [SMALL_STATE(3818)] = 101459, + [SMALL_STATE(3819)] = 101463, + [SMALL_STATE(3820)] = 101467, + [SMALL_STATE(3821)] = 101471, + [SMALL_STATE(3822)] = 101475, }; 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(2341), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3208), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3383), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3764), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2044), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2122), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2149), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), [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(2769), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3535), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1100), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(183), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(139), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(12), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(337), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1548), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(224), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(814), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(877), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3208), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3467), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2546), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2622), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1417), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1526), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(843), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1063), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2613), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(355), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3139), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2633), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3385), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2618), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1495), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2605), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1547), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3476), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1547), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3641), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [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), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [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(73), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [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(112), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1108), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(184), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(301), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(225), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(818), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(870), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3259), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3500), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2398), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2784), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1251), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1070), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2763), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(361), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2643), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2693), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3223), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2768), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2728), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1500), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3802), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3737), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 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(sym_delim_token_tree, 3, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 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 = false}}, SHIFT(1516), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3208), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2613), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(492), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2944), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2709), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3161), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2828), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3412), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3413), - [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), - [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 194), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 194), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 202), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 202), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 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, 3, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [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 = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [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(2174), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2109), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2826), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2044), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [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_range_pattern, 2, 0, 19), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [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(2162), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [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(3475), + [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(2663), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 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 = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3437), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2768), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3403), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2712), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [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}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), - [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2030), - [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(255), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2936), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), - [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), - [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3217), - [6227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(976), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2269), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), - [6511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(792), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 160), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [7234] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2042), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(262), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(611), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), + [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(800), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1955), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2326), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), + [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7254] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -202239,16 +204066,16 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_string_content] = true, }, [5] = { - [ts_external_token_float_literal] = true, + [ts_external_token__block_comment_content] = true, }, [6] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, [8] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [9] = { [ts_external_token_raw_string_literal_content] = true,